// $Id: FirmwareSwitch.hh 5733 2006-10-02 13:16:39Z m9710797 $ #ifndef FRONTSWITCH_HH #define FRONTSWITCH_HH #include "noncopyable.hh" #include namespace openmsx { class BooleanSetting; class CommandController; class XMLElement; class CliComm; class FirmwareSwitch : private noncopyable { public: FirmwareSwitch(CommandController& commandController, const XMLElement& config); ~FirmwareSwitch(); bool getStatus() const; private: const std::auto_ptr setting; const XMLElement& config; CliComm& cliComm; }; } // namespace openmsx #endif