#ifndef METHODS_H #define METHODS_H #include #include "Modules/inicpp.hpp" using std::string; class methods { public: methods(); }; int getUnixTimestamp(); string getTextMiddle(string source, string left, string right); // Get a middle text from a string string getKeyText(string iniFilePath, string mainLevel, string subLevel); // Get key value from INI file void setKeyText(string iniFilePath, string mainLevel, string subLevel, string value); // Set key value to INI file #endif // METHODS_H