| 1009 | return m_models[m_models.size() - 1].second; |
| 1010 | } |
| 1011 | void ProjectParser::SaveProjectFile(const std::string& file, const std::string& data) |
| 1012 | { |
| 1013 | std::ofstream out(GetProjectPath(file)); |
| 1014 | out << data; |
| 1015 | out.close(); |
| 1016 | } |
| 1017 | std::string ProjectParser::GetRelativePath(const std::string& to) |
| 1018 | { |
| 1019 | std::filesystem::path fFrom(m_projectPath); |