openMSX
LaserdiscPlayerCLI.hh
Go to the documentation of this file.
1#ifndef LASERDISCPLAYERCLI_HH
2#define LASERDISCPLAYERCLI_HH
3
4#include "CLIOption.hh"
5
6namespace openmsx {
7
8class CommandLineParser;
9
10class LaserdiscPlayerCLI final : public CLIOption, public CLIFileType
11{
12public:
13 explicit LaserdiscPlayerCLI(CommandLineParser& parser);
14 void parseOption(const std::string& option,
15 std::span<std::string>& cmdLine) override;
16 [[nodiscard]] std::string_view optionHelp() const override;
17 void parseFileType(const std::string& filename,
18 std::span<std::string>& cmdLine) override;
19 [[nodiscard]] std::string_view fileTypeHelp() const override;
20 [[nodiscard]] std::string_view fileTypeCategoryName() const override;
21
22private:
23 CommandLineParser& parser;
24};
25
26} // namespace openmsx
27
28#endif
void parseOption(const std::string &option, std::span< std::string > &cmdLine) override
std::string_view fileTypeHelp() const override
void parseFileType(const std::string &filename, std::span< std::string > &cmdLine) override
std::string_view fileTypeCategoryName() const override
std::string_view optionHelp() const override
This file implemented 3 utility functions:
Definition Autofire.cc:9