| 36 | } |
| 37 | |
| 38 | std::string SourceFileManager::getFilePath(std::string Name) const { |
| 39 | auto Iter = ManagedFiles.find(Name); |
| 40 | if (Iter == ManagedFiles.end()) |
| 41 | return ""; |
| 42 | return Iter->second; |
| 43 | } |
| 44 | |
| 45 | std::string SourceFileManager::getOutDirPath() const { |
| 46 | return (fs::path(BaseDir) / fs::path("out")).string(); |