#ifndef _HEADER_ETHERYOBLOG_DOTENV #define _HEADER_ETHERYOBLOG_DOTENV #include #include namespace Etheryo { class DotEnv { public: DotEnv(); int readFile(const std::string& path); const std::string& operator[](const std::string& rvalue); private: std::unordered_map _fileData; }; } #endif // _HEADER_ETHERYOBLOG_DOTENV