MCPcopy Create free account
hub / github.com/aiekick/ImGuiFileDialog / FileManager

Method FileManager

ImGuiFileDialog.cpp:1841–1851  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1839}
1840
1841IGFD::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
1853void IGFD::FileManager::OpenCurrentPath(const FileDialogInternal& vFileDialogInternal) {
1854 showDevices = false;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected