ClassLogFile.h 301 B

12345678910111213141516
  1. #include <string>
  2. class ClassLogFile
  3. {
  4. private:
  5. std::string logfile;
  6. public:
  7. ClassLogFile(std::string _logfile);
  8. void WriteToFile(std::string info, bool _time = true);
  9. void WriteToDedicatedFile(std::string _fn, std::string info, bool _time = true);
  10. };
  11. extern ClassLogFile LogFile;