1#ifndef YAZE_SRC_CLI_HANDLERS_ROM_PROJECT_BUNDLE_VERIFY_COMMANDS_H_
2#define YAZE_SRC_CLI_HANDLERS_ROM_PROJECT_BUNDLE_VERIFY_COMMANDS_H_
24 std::string
GetName()
const override {
return "project-bundle-verify"; }
26 return "project-bundle-verify --project <path> "
27 "[--check-rom-hash] [--format <json|text>] [--report <path>]";
32 Descriptor
Describe()
const override;
The Rom class is used to load, save, and modify Rom data. This is a generic SNES ROM container and do...
std::string GetUsage() const override
Get the command usage string.
absl::Status ValidateArgs(const resources::ArgumentParser &parser) override
Validate command arguments.
Descriptor Describe() const override
Provide metadata for TUI/help summaries.
std::string GetName() const override
Get the command name.
absl::Status Execute(Rom *rom, const resources::ArgumentParser &parser, resources::OutputFormatter &formatter) override
Execute the command business logic.
bool RequiresRom() const override
Check if the command requires a loaded ROM.
Utility for parsing common CLI argument patterns.
Base class for CLI command handlers.