]> git.tdb.fi Git - builder.git/blobdiff - source/config.h
Update cross prefix for windows architecture
[builder.git] / source / config.h
index 94997750b26497c4ab83003f41382b78b13104fb..1f7fa712839f5b5bdc346681e3a346c117aafba4 100644 (file)
@@ -6,6 +6,7 @@
 #include <msp/datafile/loader.h>
 #include <msp/fs/path.h>
 #include <msp/time/timestamp.h>
+#include "feature.h"
 
 class SourcePackage;
 
@@ -17,14 +18,11 @@ class Config
 {
 public:
        /** A single configuration option. */
-       struct Option
+       struct Option: public Feature
        {
-               std::string name;
-               std::string default_value;
-               std::string description;
                std::string value;
 
-               Option(const std::string &, const std::string &, const std::string &);
+               Option(const Feature &);
        };
 
        typedef std::map<std::string, Option> OptionMap;
@@ -48,8 +46,8 @@ private:
 public:
        Config(SourcePackage &);
 
-       /** Adds a configuration option with name, default value and description. */
-       void add_option(const std::string &, const std::string &, const std::string &);
+       /** Adds a configuration option based on a feature. */
+       const Option &add_option(const Feature &);
 
        bool set_option(const std::string &, const std::string &);