| 2416 | } |
| 2417 | |
| 2418 | std::string IGFD::FileManager::GetCurrentPath() { |
| 2419 | if (m_CurrentPath.empty()) { |
| 2420 | m_CurrentPath = "."; |
| 2421 | } |
| 2422 | return m_CurrentPath; |
| 2423 | } |
| 2424 | |
| 2425 | void IGFD::FileManager::SetCurrentPath(const std::string& vCurrentPath) { |
| 2426 | if (vCurrentPath.empty()) |
no test coverage detected