▼CTCLAP::Arg | A virtual base class that defines the essential data for all arguments |
▼CTCLAP::MultiArg< T > | An argument that allows multiple values of type T to be specified |
CTCLAP::UnlabeledMultiArg< T > | Just like a MultiArg, except that the arguments are unlabeled |
▼CTCLAP::SwitchArg | A simple switch argument |
CTCLAP::MultiSwitchArg | A multiple switch argument |
▼CTCLAP::ValueArg< T > | The basic labeled argument that parses a value |
CTCLAP::UnlabeledValueArg< T > | The basic unlabeled argument that parses a value |
▼CTCLAP::ArgContainer | Interface that allows adding an Arg to a "container" |
▼CTCLAP::ArgGroup | ArgGroup is the base class for implementing groups of arguments that are mutually exclusive (it replaces the deprecated xor handler) |
▼CTCLAP::AnyOf | Implements a group of arguments where any combination is possible (including all or none) |
CTCLAP::StandaloneArgs | |
▼CTCLAP::ExclusiveArgGroup | Implements common functionality for exclusive argument groups |
CTCLAP::EitherOf | Implements a group of arguments where at most one can be selected |
CTCLAP::OneOf | Implements a group of arguments where exactly one must be selected |
▼CTCLAP::CmdLineInterface | The base class that manages the command line definition and passes along the parsing to the appropriate Arg classes |
CTCLAP::CmdLine | The base class that manages the command line definition and passes along the parsing to the appropriate Arg classes |
CTCLAP::ArgTraits< T > | Arg traits are used to get compile type specialization when parsing argument values |
CTCLAP::ArgTraits< std::string > | |
▼CTCLAP::CmdLineOutput | The interface that any output object must implement |
CTCLAP::DocBookOutput | A class that generates DocBook output for usage() method for the given CmdLine and its Args |
CTCLAP::StdOutput | A class that isolates any output from the CmdLine object so that it may be easily modified |
▼CTCLAP::Constraint< T > | The interface that defines the interaction between the Arg and Constraint |
CTCLAP::ValuesConstraint< T > | A Constraint that constrains the Arg to only those values specified in the constraint |
CTCLAP::DeferDelete | DeferDelete can be used by objects that need to allocate arbitrary other objects to live for the duration of the first object |
▼Cexception | |
▼CTCLAP::ArgException | A simple class that defines and argument exception |
CTCLAP::ArgParseException | Thrown from within the child Arg classes when it fails to properly parse the argument it has been passed |
CTCLAP::CmdLineParseException | Thrown from CmdLine when the arguments on the command line are not properly specified, e.g |
CTCLAP::SpecificationException | Thrown from Arg and CmdLine when an Arg is improperly specified, e.g |
CTCLAP::ExitException | Thrown when TCLAP thinks the program should exit |
CTCLAP::OptionalUnlabeledTracker | |
CTCLAP::StringLike | A string like argument value type is a value that can be set using operator=(string) |
CTCLAP::StringLikeTrait | A class can inherit from this object to make it have string like traits |
CTCLAP::ValueLike | A value like argument value type is a value that can be set using operator>> |
CTCLAP::ValueLikeTrait | A class can inherit from this object to make it have value like traits |
▼CTCLAP::Visitor | A base class that defines the interface for visitors |
CTCLAP::HelpVisitor | A Visitor object that calls the usage method of the given CmdLineOutput object for the specified CmdLine object |
CTCLAP::IgnoreRestVisitor | A Visitor that tells the CmdLine to begin ignoring arguments after this one is parsed |
CTCLAP::VersionVisitor | A Visitor that will call the version method of the given CmdLineOutput for the specified CmdLine object and then exit |