⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logger.h

📁 C++高级编程这本书所附的源代码
💻 H
字号:
/**
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -