| 2478 | } |
| 2479 | |
| 2480 | std::string IGFD::FileManager::GetCurrentPath() { |
| 2481 | if (m_CurrentPath.empty()) { |
| 2482 | m_CurrentPath = "."; |
| 2483 | } |
| 2484 | return m_CurrentPath; |
| 2485 | } |
| 2486 | |
| 2487 | void IGFD::FileManager::SetCurrentPath(const std::string& vCurrentPath) { |
| 2488 | if (vCurrentPath.empty()) |
no test coverage detected