#pragma once #include #include namespace Prism::Tui { enum class Command { Run, ListDevices, Help, Version, }; struct Options { Command command = Command::Run; std::string deviceId; }; struct ParseResult { bool ok = false; Options options; std::string error; }; ParseResult parseArguments(const std::vector& arguments); std::string usageText(); } // namespace Prism::Tui