// $Id: InfoTopic.cc 5779 2006-10-14 16:17:32Z m9710797 $ #include "InfoTopic.hh" #include "InfoCommand.hh" using std::string; using std::vector; namespace openmsx { InfoTopic::InfoTopic(InfoCommand& infoCommand_, const string& name) : Completer(name) , infoCommand(infoCommand_) { infoCommand.registerTopic(*this, getName()); } InfoTopic::~InfoTopic() { infoCommand.unregisterTopic(*this, getName()); } void InfoTopic::tabCompletion(vector& /*tokens*/) const { // do nothing } } // namespace openmsx