| 69 | std::vector<FileTreeNode*> Children; |
| 70 | }; |
| 71 | class FileData { |
| 72 | public: |
| 73 | FileData(const std::filesystem::path& path); |
| 74 | |
| 75 | std::filesystem::path Path; |
| 76 | bool IsDirectory; |
| 77 | size_t Size; |
| 78 | time_t DateModified; |
| 79 | |
| 80 | bool HasIconPreview; |
| 81 | void* IconPreview; |
| 82 | uint8_t* IconPreviewData; |
| 83 | int IconPreviewWidth, IconPreviewHeight; |
| 84 | }; |
| 85 | |
| 86 | private: |
| 87 | std::string m_currentKey; |