#ifndef __LOGGER_H__ #define __LOGGER_H__ #include namespace Logger { void initLog(); void logMessage(std::string str); void setLogfile(std::string file); std::string getLog(); } #endif // __LOGGER_H__