Move Config gen stuff to ConfigFile.cpp, Add version flag

This commit is contained in:
Thraix
2018-06-10 12:02:51 +02:00
parent 0af9887ea7
commit 464c483445
6 changed files with 133 additions and 78 deletions
+3
View File
@@ -13,10 +13,13 @@ class ConfigFile
std::vector<std::string> defines;
std::string outputdir;
std::string outputname;
std::string projectname;
bool executable;
public:
ConfigFile();
void Save() const;
static ConfigFile Gen();
static ConfigFile Load();
private:
static void InputMultiple(const std::string& inputText, std::vector<std::string>& vec, bool needEnding);
};