X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.h;h=a82e53685c390b0fdc7e528b1a2ad9a71b3199b2;hb=82c7d6187fdaeaa1b9cfbd6637d9b047a78f17ec;hp=92f558577d0c167454f3e05df0b112a0d1d57270;hpb=c63d5e1c1a1b3c095a94d1e21a302aaa694dd656;p=builder.git diff --git a/source/config.h b/source/config.h index 92f5585..a82e536 100644 --- a/source/config.h +++ b/source/config.h @@ -6,7 +6,7 @@ #include #include #include -#include "misc.h" +#include "feature.h" class SourcePackage; @@ -18,18 +18,14 @@ 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 OptionMap; - typedef std::map InputOptions; + using InputOptions = std::map; private: class Loader: public Msp::DataFile::ObjectLoader @@ -41,16 +37,16 @@ private: }; SourcePackage &package; - OptionMap options; + std::map options; InputOptions pending_options; Msp::Time::TimeStamp mtime; - bool changed; + mutable bool changed; 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 &); @@ -60,7 +56,7 @@ public: /** Gets a configuration option by name. */ const Option &get_option(const std::string &) const; - const OptionMap &get_options() const { return options; } + const std::map &get_options() const { return options; } const Msp::Time::TimeStamp &get_mtime() const { return mtime; } void load();