// $Id: RomInfoTopic.hh 5774 2006-10-13 07:29:35Z m9710797 $ #ifndef ROMINFOTOPIC_HH #define ROMINFOTOPIC_HH #include "InfoTopic.hh" namespace openmsx { class RomInfoTopic : public InfoTopic { public: explicit RomInfoTopic(InfoCommand& openMSXInfoCommand); virtual void execute(const std::vector& tokens, TclObject& result) const; virtual std::string help(const std::vector& tokens) const; virtual void tabCompletion(std::vector& tokens) const; }; } // namespace openmsx #endif