Guest User

Untitled

a guest
Oct 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. #include <MinGCL.h>
  5.  
  6. class Log
  7. {
  8. public:
  9.     static void Create();
  10.     static void WriteEntry(std::string strEventType, std::string strDescription, std::string strFile, DWORD dwLine, std::string strFunction);
  11.     static void Close();
  12.  
  13. protected:
  14.     static std::ofstream sm_File;
  15. };
Add Comment
Please, Sign In to add comment