#include "Project.hpp" #include 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); }