Enigma 3.2.2
A Simple, Reliable and Efficient Encryption Tool
Loading...
Searching...
No Matches
ENV.hpp
Go to the documentation of this file.
1#pragma once
2#ifndef ENIGMA_ENV_H
3#define ENIGMA_ENV_H
4
5#include <Core/Core.hpp>
6
13class ENV final {
15
16 public:
20 static std::string Get(const std::string& key);
21
25 static void Set(const std::string& key, const std::string& value);
26
30 static void Delete(const std::string& key);
31};
32
34#endif // !ENIGMA_CLIPBOARD_H
#define NS_ENIGMA_BEGIN
Enable/Disable Assertions.
Definition Macros.hpp:13
#define NS_ENIGMA_END
Definition Macros.hpp:14
#define ENIGMA_STATIC_CLASS(Class)
Makes a class static, which will prevent creating instances from it and only use it as Class::Func()....
Definition Macros.hpp:120
Definition ENV.hpp:13
static std::string Get(const std::string &key)
static void Delete(const std::string &key)
static void Set(const std::string &key, const std::string &value)