add remove
This commit is contained in:
parent
41c8f0c633
commit
67f0ab5d19
4 changed files with 20 additions and 0 deletions
|
@ -8,9 +8,13 @@
|
|||
class Project {
|
||||
public:
|
||||
Project(const std::string& path, const std::string& path_to_scripts, const std::string& name);
|
||||
|
||||
Project(const Project&) = delete;
|
||||
Project(Project&&) = default;
|
||||
|
||||
Project& operator=(const Project&) = delete;
|
||||
Project& operator=(Project&&) = default;
|
||||
|
||||
const std::filesystem::path& GetPath() const;
|
||||
const std::filesystem::path& GetPathToScripts() const;
|
||||
const std::string& GetName() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue