| 1839 | } |
| 1840 | |
| 1841 | IGFD::FileManager::FileManager() { |
| 1842 | fsRoot = IGFD::Utils::GetPathSeparator(); |
| 1843 | #define STR(x) #x |
| 1844 | #define STR_AFTER_EXPAND(x) STR(x) |
| 1845 | m_FileSystemName = STR_AFTER_EXPAND(FILE_SYSTEM_OVERRIDE); |
| 1846 | #undef STR_AFTER_EXPAND |
| 1847 | #undef STR |
| 1848 | // std::make_unique is not available un cpp11 |
| 1849 | m_FileSystemPtr = std::unique_ptr<FILE_SYSTEM_OVERRIDE>(new FILE_SYSTEM_OVERRIDE()); |
| 1850 | // m_FileSystemPtr = std::make_unique<FILE_SYSTEM_OVERRIDE>(); |
| 1851 | } |
| 1852 | |
| 1853 | void IGFD::FileManager::OpenCurrentPath(const FileDialogInternal& vFileDialogInternal) { |
| 1854 | showDevices = false; |
nothing calls this directly
no outgoing calls
no test coverage detected