blob: f301bb821f88e42c6960b0b39531433cd5d4a8ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "Project.hpp"
#include <utility>
const std::filesystem::path& Project::GetPath() const {
return mRootPath;
}
const std::string& Project::GetName() const {
return mName;
}
void Project::SetName(std::string name) {
mName = std::move(name);
}
|