| 74 | } |
| 75 | |
| 76 | std::wstring Recorder::GetRecordFilePath(CopyOperation op) |
| 77 | { |
| 78 | auto ret = std::format(L"{}\\{}{}.txt", GetLocalDataFolder(), toFlag(op), GetTimeString()); |
| 79 | //MessageBoxW(NULL, ret.data(), L"", 0); |
| 80 | return ret; |
| 81 | } |
| 82 | |
| 83 | bool Recorder::HasRecord() |
| 84 | { |
nothing calls this directly
no test coverage detected