| 15 | namespace debugviewpp { |
| 16 | |
| 17 | Message::Message(double time, FILETIME systemTime, DWORD pid, const std::string& processName, const std::string& msg, COLORREF color) : |
| 18 | time(time), systemTime(systemTime), processId(pid), processName(processName), text(msg), color(color) |
| 19 | { |
| 20 | } |
| 21 | |
| 22 | LogFile::LogFile() : |
| 23 | m_historySize(0) |
nothing calls this directly
no outgoing calls
no test coverage detected