#pragma once #include #include class Project { public: std::filesystem::path mRootPath; std::string mName; public: // Path to a *directory* that contains the project file. const std::filesystem::path& GetPath() const; const std::string& GetName() const; void SetName(std::string name); };