| 15 | namespace debugviewpp { |
| 16 | |
| 17 | PollLine::PollLine(DWORD pid, const std::string& processName, const std::string& message, const LogSource* pLogSource) : |
| 18 | timesValid(false), |
| 19 | time(0.0), |
| 20 | systemTime(FILETIME()), |
| 21 | pid(pid), |
| 22 | processName(processName), |
| 23 | message(message), |
| 24 | pLogSource(pLogSource) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | PollLine::PollLine(double time, FILETIME systemTime, DWORD pid, const std::string& processName, const std::string& message, const LogSource* pLogSource) : |
| 29 | timesValid(true), |
nothing calls this directly
no outgoing calls
no test coverage detected