| 62 | std::vector<FileTreeNode*> Children; |
| 63 | }; |
| 64 | class FileData { |
| 65 | public: |
| 66 | FileData(const std::filesystem::path& path); |
| 67 | |
| 68 | std::filesystem::path Path; |
| 69 | bool IsDirectory; |
| 70 | size_t Size; |
| 71 | time_t DateModified; |
| 72 | |
| 73 | bool HasIconPreview; |
| 74 | void* IconPreview; |
| 75 | uint8_t* IconPreviewData; |
| 76 | int IconPreviewWidth, IconPreviewHeight; |
| 77 | }; |
| 78 | |
| 79 | private: |
| 80 | std::string m_currentKey; |