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