// $Id: BooleanSetting.hh 5779 2006-10-14 16:17:32Z m9710797 $ #ifndef BOOLEANSETTING_HH #define BOOLEANSETTING_HH #include "EnumSetting.hh" namespace openmsx { /** A Setting with a boolean value. */ class BooleanSetting : public EnumSetting { public: BooleanSetting(CommandController& commandController, const std::string& name, const std::string& description, bool initialValue, SaveSetting save = SAVE); private: static const EnumSetting::Map& getMap(); }; } // namespace openmsx #endif