JUCE
Public Attributes | List of all members
ConsoleApplication::Command Struct Reference

Represents a command that can be executed if its command-line arguments are matched. More...

Public Attributes

String commandOption
 The option string that must appear in the argument list for this command to be invoked. More...
 
String argumentDescription
 A description of the command-line arguments needed for this command, which will be printed as part of the help text. More...
 
String shortDescription
 A short (one line) description of this command, which can be printed by ConsoleApplication::printCommandList(). More...
 
String longDescription
 A longer description of this command, for use in extended help. More...
 
std::function< void(const ArgumentList &)> command
 The actual command that should be invoked to perform this action. More...
 

Detailed Description

Represents a command that can be executed if its command-line arguments are matched.

See also
ConsoleApplication::addCommand(), ConsoleApplication::findAndRunCommand()

Member Data Documentation

◆ commandOption

String ConsoleApplication::Command::commandOption

The option string that must appear in the argument list for this command to be invoked.

This can also be a list of different versions separated by pipes, e.g. "--help|-h"

◆ argumentDescription

String ConsoleApplication::Command::argumentDescription

A description of the command-line arguments needed for this command, which will be printed as part of the help text.

◆ shortDescription

String ConsoleApplication::Command::shortDescription

A short (one line) description of this command, which can be printed by ConsoleApplication::printCommandList().

◆ longDescription

String ConsoleApplication::Command::longDescription

A longer description of this command, for use in extended help.

◆ command

std::function<void(const ArgumentList&)> ConsoleApplication::Command::command

The actual command that should be invoked to perform this action.


The documentation for this struct was generated from the following file: