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