]> git.tdb.fi Git - builder.git/blobdiff - source/feature.h
File Tool's executable before calling do_prepare
[builder.git] / source / feature.h
index 5bcaa4df53a3be6a91d538883c1a51701786e85c..0dca1f524ed315cf681df464abd278a2da384879 100644 (file)
@@ -16,10 +16,11 @@ struct Feature
 
        std::string name;
        std::string description;
-       std::string default_value;
-       std::list<std::string> choices;
+       std::string default_value = "no";
+       std::vector<std::string> choices;
+       bool exported = false;
 
-       Feature(const std::string &);
+       Feature(const std::string &n): name(n) { }
 };
 
 #endif