openMSX
RomInfoTopic.hh
Go to the documentation of this file.
1#ifndef ROMINFOTOPIC_HH
2#define ROMINFOTOPIC_HH
3
4#include "InfoTopic.hh"
5
6namespace openmsx {
7
8class RomInfoTopic final : public InfoTopic
9{
10public:
11 explicit RomInfoTopic(InfoCommand& openMSXInfoCommand);
12
13 void execute(std::span<const TclObject> tokens,
14 TclObject& result) const override;
15 [[nodiscard]] std::string help(std::span<const TclObject> tokens) const override;
16 void tabCompletion(std::vector<std::string>& tokens) const override;
17};
18
19} // namespace openmsx
20
21#endif
void tabCompletion(std::vector< std::string > &tokens) const override
Attempt tab completion for this topic.
void execute(std::span< const TclObject > tokens, TclObject &result) const override
Show info on this topic.
std::string help(std::span< const TclObject > tokens) const override
Print help for this topic.
This file implemented 3 utility functions:
Definition Autofire.cc:11