logger.h
来自「C++高级编程这本书所附的源代码」· C头文件 代码 · 共 43 行
H
43 行
/**
* Logger.h
*
* Definition of a true singleton logger class.
*/
#include <iostream>
#include <fstream>
#include <vector>
class Logger
{
public:
static const std::string kLogLevelDebug;
static const std::string kLogLevelInfo;
static const std::string kLogLevelError;
// Returns a reference to the singleton Logger object
static Logger& instance();
// Logs a single message at the given log level
void log(const std::string& inMessage,
const std::string& inLogLevel);
// Logs a vector of messages at the given log level
void log(const std::vector<std::string>& inMessages,
const std::string& inLogLevel);
protected:
// Static variable for the one-and-only instance
static Logger sInstance;
// Constant for the file namename
static const char* const kLogFileName;
// Data member for the output stream
std::ofstream mOutputStream;
private:
Logger();
~Logger();
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?