Ookii.CommandLine for C++
2.0.0
|
Provides functionality for applications that have multiple subcommands, all with their own arguments. More...
Go to the source code of this file.
Classes | |
class | ookii::basic_command< CharType, Traits, Alloc > |
Abstract base class for all subcommands. More... | |
class | ookii::basic_command_manager< CharType, Traits, Alloc > |
Manages registration, creation and invocation of subcommands for an application. More... | |
class | ookii::basic_command_with_custom_parsing< CharType, Traits, Alloc > |
Abstract base class for subcommands that do their own argument parsing. More... | |
class | ookii::command_info< CharType, Traits, Alloc > |
Provides information about a subcommand. More... | |
Namespaces | |
ookii | |
Namespace containing the core Ookii.CommandLine.Cpp types. | |
Typedefs | |
using | ookii::command = basic_command< char > |
Typedef for basic_command using char as the character type. | |
using | ookii::command_manager = basic_command_manager< char > |
Typedef for basic_command_manager using char as the character type. | |
using | ookii::command_with_custom_parsing = basic_command_with_custom_parsing< char > |
Typedef for basic_command_with_custom_parsing using char as the character type. | |
using | ookii::wcommand = basic_command< wchar_t > |
Typedef for basic_command using wchar_t as the character type. | |
using | ookii::wcommand_manager = basic_command_manager< wchar_t > |
Typedef for basic_command_manager using wchar_t as the character type. | |
using | ookii::wcommand_with_custom_parsing = basic_command_with_custom_parsing< wchar_t > |
Typedef for basic_command_with_custom_parsing using wchar_t as the character type. | |
Provides functionality for applications that have multiple subcommands, all with their own arguments.