X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.h;h=92f558577d0c167454f3e05df0b112a0d1d57270;hb=b8407de928d2c5421c35474df1c3185fd494ef68;hp=8372af90f99c330c197a0343000b63d481df0013;hpb=bd61d7fbd0ba77356b6def1dd20f8cebe31de182;p=builder.git diff --git a/source/config.h b/source/config.h index 8372af9..92f5585 100644 --- a/source/config.h +++ b/source/config.h @@ -21,8 +21,8 @@ public: struct Option { std::string name; - std::string defv; - std::string descr; + std::string default_value; + std::string description; std::string value; Option(const std::string &, const std::string &, const std::string &); @@ -52,18 +52,19 @@ public: /** Adds a configuration option with name, default value and description. */ void add_option(const std::string &, const std::string &, const std::string &); + bool set_option(const std::string &, const std::string &); + + /** Checks whether an option exists. */ + bool is_option(const std::string &) const; + /** Gets a configuration option by name. */ const Option &get_option(const std::string &) const; const OptionMap &get_options() const { return options; } const Msp::Time::TimeStamp &get_mtime() const { return mtime; } - /** Checks whether an option exists. */ - bool is_option(const std::string &) const; - - void save() const; - bool set_option(const std::string &, const std::string &); void load(); + void save() const; }; #endif