| 75 | } |
| 76 | |
| 77 | void cDebugger::Output(const std::string pMessage) { |
| 78 | #ifdef WIN32 |
| 79 | OutputDebugStringA(pMessage.c_str()); |
| 80 | #endif |
| 81 | std::cout << pMessage; |
| 82 | } |
| 83 | |
| 84 | void cDebugger::Notice(const std::string& pMessage) { |
| 85 | ConsoleOpen(); |
nothing calls this directly
no outgoing calls
no test coverage detected