| 447 | } |
| 448 | |
| 449 | static std::string pathToString(const std::filesystem::path& path) { |
| 450 | #ifdef _IGFD_WIN_ |
| 451 | return IGFD::Utils::UTF8Encode(path.wstring()); |
| 452 | #else |
| 453 | return path.string(); |
| 454 | #endif |
| 455 | } |
| 456 | |
| 457 | class FileSystemStd : public IGFD::IFileSystem { |
| 458 | public: |
no outgoing calls
no test coverage detected