// -*- mode: c++; c-basic-offset: 2; -*- #ifndef GUI_CONFIG_HH #define GUI_CONFIG_HH #include "config.hh" class GuiConfig : public Config { public: bool load_name(std::string const& name) override; bool load_file(std::string const& filename) override; bool get(std::string const& key, bool fallback) override; bool good() const override; std::string const& last_error() const override; private: static const std::string EMPTY; }; #endif // GUI_CONFIG_HH