| 4 | class ShellItem; |
| 5 | |
| 6 | class Recorder |
| 7 | { |
| 8 | public: |
| 9 | Recorder(CopyOperation op); |
| 10 | Recorder& operator<<(ShellItem& item); |
| 11 | ~Recorder(); |
| 12 | static bool HasRecord(); |
| 13 | private: |
| 14 | FILE* m_fs; |
| 15 | |
| 16 | /** |
| 17 | * Return the file name of the record file |
| 18 | * @example "C:\Users\Peter\AppData\Local\Temp\FastCopy\C2023-4-13-23:32:01" |
| 19 | */ |
| 20 | static std::wstring GetRecordFilePath(CopyOperation op); |
| 21 | |
| 22 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected