| 14 | namespace debugviewpp { |
| 15 | |
| 16 | FileWriter::FileWriter(const std::wstring& filename, LogFile& logfile) : |
| 17 | m_logfile(logfile) |
| 18 | { |
| 19 | OpenLogFile(m_ofstream, filename, OpenMode::Append); |
| 20 | m_thread = std::thread(&FileWriter::Run, this); |
| 21 | } |
| 22 | |
| 23 | void FileWriter::Run() |
| 24 | { |
nothing calls this directly
no test coverage detected