// $Id: CliExtension.hh 5746 2006-10-05 16:57:09Z m9710797 $ #ifndef CLIEXTENSION_HH #define CLIEXTENSION_HH #include "CLIOption.hh" namespace openmsx { class CommandLineParser; class CliExtension : public CLIOption { public: explicit CliExtension(CommandLineParser& cmdLineParser); virtual bool parseOption(const std::string& option, std::list& cmdLine); virtual const std::string& optionHelp() const; private: CommandLineParser& cmdLineParser; }; } // namespace openmsx #endif