top | up | prev | next

Solution Class

Definition at line 49 of Solution.hpp

Constructors

Solution(Solution&&) delete
Solution(const Solution&) delete

Member Functions

const std::string& BasePath() const
Solution&& operator=(Solution&&) delete
Solution& operator=(const Solution&) delete

Member Variables

std::string basePath
std::string filePath
Version formatVersion
Version minimumVisualStudioVersion
std::unordered_map<std::u32string, Project*> projectMap
std::vector<std::unique_ptr<Project>> projects
Version visualStudioVersion

Constructor Details

Solution Constructor

sngcpp::ast::Solution::Solution(Solution &&) delete

Definition at line 54 of Solution.hpp


Solution Constructor

sngcpp::ast::Solution::Solution(const Solution &) delete

Definition at line 53 of Solution.hpp


Member Function Details

BasePath Member Function

const std::string& sngcpp::ast::Solution::BasePath() const

Definition at line 60 of Solution.hpp :
60 { return basePath; }


operator= Member Function

Solution && sngcpp::ast::Solution::operator=(Solution &&) delete

Definition at line 56 of Solution.hpp


operator= Member Function

Solution & sngcpp::ast::Solution::operator=(const Solution &) delete

Definition at line 55 of Solution.hpp


top | up | prev | next