Files
core/ASCOfficeXlsFile/ASCWorksheetConverter/source/Logging/Logger.h

17 lines
244 B
C++

#pragma once
class Logger
{
private:
Logger(const std::string& log_file);
~Logger();
public:
static Logger& getLogger();
void writeLine(const std::string& type, const std::string& str);
private:
std::ofstream m_log;
};