@brief ��־ϵͳ
| 16 | |
| 17 | /// @brief ��־ϵͳ |
| 18 | class LogSystem |
| 19 | { |
| 20 | public: |
| 21 | /// @brief ��ȡ��־ϵͳʵ�� |
| 22 | static __declspec(noinline) LogSystem& GetInstance(); |
| 23 | private: |
| 24 | std::fstream m_LogFile; |
| 25 | public: |
| 26 | /// @brief ��¼��־ |
| 27 | /// @param type ��־���� |
| 28 | /// @param info ��ʽ���ı� |
| 29 | __declspec(noinline) void Log(LogType type, const wchar_t* info, ...)throw(); |
| 30 | public: |
| 31 | LogSystem(); |
| 32 | ~LogSystem(); |
| 33 | }; |
| 34 | } |
nothing calls this directly
no outgoing calls
no test coverage detected