Enigma  3.2.0
A Simple, Reliable and Efficient Encryption Tool
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 
13 class ENV final {
14  ENIGMA_STATIC_CLASS(ENV);
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
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)