tclap  1.4.0
Public Member Functions | Protected Attributes | List of all members
TCLAP::SwitchArg Class Reference

A simple switch argument. More...

#include <SwitchArg.h>

Inheritance diagram for TCLAP::SwitchArg:
Inheritance graph
[legend]
Collaboration diagram for TCLAP::SwitchArg:
Collaboration graph
[legend]

Public Member Functions

 SwitchArg (const std::string &flag, const std::string &name, const std::string &desc, bool def=false, Visitor *v=NULL)
 SwitchArg constructor. More...
 
 SwitchArg (const std::string &flag, const std::string &name, const std::string &desc, ArgContainer &parser, bool def=false, Visitor *v=NULL)
 SwitchArg constructor. More...
 
virtual bool processArg (int *i, std::vector< std::string > &args)
 Handles the processing of the argument. More...
 
bool combinedSwitchesMatch (std::string &combined)
 Checks a string to see if any of the chars in the string match the flag for this Switch. More...
 
bool getValue () const
 Returns bool, whether or not the switch has been set. More...
 
 operator bool () const
 A SwitchArg can be used as a boolean, indicating whether or not the switch has been set. More...
 
virtual void reset ()
 Clears the Arg object and allows it to be reused by new command lines. More...
 
- Public Member Functions inherited from TCLAP::Arg
virtual ~Arg ()
 Destructor. More...
 
virtual void addToList (std::list< Arg *> &argList) const
 Adds this to the specified list of Args. More...
 
virtual bool operator== (const Arg &a) const
 Operator ==. More...
 
const std::string & getFlag () const
 Returns the argument flag. More...
 
const std::string & getName () const
 Returns the argument name. More...
 
std::string getDescription () const
 Returns the argument description. More...
 
std::string getDescription (bool required) const
 Returns the argument description. More...
 
virtual bool isRequired () const
 Indicates whether the argument is required. More...
 
bool isValueRequired () const
 Indicates whether a value must be specified for argument. More...
 
bool isSet () const
 Indicates whether the argument has already been set. More...
 
const std::string & setBy () const
 Returns the value specified to set this flag (like -a or –all). More...
 
bool isIgnoreable () const
 Indicates whether the argument can be ignored, if desired. More...
 
virtual bool argMatches (const std::string &s) const
 A method that tests whether a string matches this argument. More...
 
virtual std::string toString () const
 Returns a simple string representation of the argument. More...
 
virtual std::string shortID (const std::string &valueId="val") const
 Returns a short ID for the usage. More...
 
virtual std::string longID (const std::string &valueId="val") const
 Returns a long ID for the usage. More...
 
virtual void trimFlag (std::string &flag, std::string &value) const
 Trims a value off of the flag. More...
 
bool _hasBlanks (const std::string &s) const
 Checks whether a given string has blank chars, indicating that it is a combined SwitchArg. More...
 
virtual bool allowMore ()
 Used for MultiArgs to determine whether args can still be set. More...
 
virtual bool acceptsMultipleValues ()
 Use by output classes to determine whether an Arg accepts multiple values. More...
 
virtual void hideFromHelp (bool hide=true)
 Hide this argument from the help output (e.g., when specifying the –help flag or on error. More...
 
virtual bool visibleInHelp () const
 Returns true if this Arg is visible in the help output. More...
 
virtual bool hasLabel () const
 

Protected Attributes

bool _value
 The value of the switch. More...
 
bool _default
 Used to support the reset() method so that ValueArg can be reset to their constructed value. More...
 
- Protected Attributes inherited from TCLAP::Arg
std::string _flag
 The single char flag used to identify the argument. More...
 
std::string _name
 A single word namd identifying the argument. More...
 
std::string _description
 Description of the argument. More...
 
const bool _required
 Indicating whether the argument is required. More...
 
std::string _requireLabel
 Label to be used in usage description. More...
 
bool _valueRequired
 Indicates whether a value is required for the argument. More...
 
bool _alreadySet
 Indicates whether the argument has been set. More...
 
std::string _setBy
 Indicates the value specified to set this flag (like -a or –all). More...
 
Visitor_visitor
 A pointer to a visitor object. More...
 
bool _ignoreable
 Whether this argument can be ignored, if desired. More...
 
bool _acceptsMultipleValues
 
bool _visibleInHelp
 Indicates if the argument is visible in the help output (e.g., when specifying –help). More...
 

Additional Inherited Members

- Static Public Member Functions inherited from TCLAP::Arg
static char delimiter ()
 The delimiter that separates an argument flag/name from the value. More...
 
static char blankChar ()
 The char used as a place holder when SwitchArgs are combined. More...
 
static char flagStartChar ()
 
static const std::string flagStartString ()
 
static const std::string nameStartString ()
 
static const std::string ignoreNameString ()
 The name used to identify the ignore rest argument. More...
 
static void setDelimiter (char c)
 Sets the delimiter for all arguments. More...
 
- Protected Member Functions inherited from TCLAP::Arg
void _checkWithVisitor () const
 Performs the special handling described by the Visitor. More...
 
 Arg (const std::string &flag, const std::string &name, const std::string &desc, bool req, bool valreq, Visitor *v=NULL)
 Primary constructor. More...
 

Detailed Description

A simple switch argument.

If the switch is set on the command line, then the getValue method will return the opposite of the default value for the switch.

Definition at line 40 of file SwitchArg.h.

Constructor & Destructor Documentation

◆ SwitchArg() [1/2]

TCLAP::SwitchArg::SwitchArg ( const std::string &  flag,
const std::string &  name,
const std::string &  desc,
bool  def = false,
Visitor v = NULL 
)
inline

SwitchArg constructor.

Parameters
flag- The one character flag that identifies this argument on the command line.
name- A one word name for the argument. Can be used as a long flag on the command line.
desc- A description of what the argument is for or does.
def- The default value for this Switch.
v- An optional visitor. You probably should not use this unless you have a very good reason.

Definition at line 132 of file SwitchArg.h.

◆ SwitchArg() [2/2]

TCLAP::SwitchArg::SwitchArg ( const std::string &  flag,
const std::string &  name,
const std::string &  desc,
ArgContainer parser,
bool  def = false,
Visitor v = NULL 
)
inline

SwitchArg constructor.

Parameters
flag- The one character flag that identifies this argument on the command line.
name- A one word name for the argument. Can be used as a long flag on the command line.
desc- A description of what the argument is for or does.
parser- A CmdLine parser object to add this Arg to
def- The default value for this Switch.
v- An optional visitor. You probably should not use this unless you have a very good reason.

Definition at line 139 of file SwitchArg.h.

References TCLAP::ArgContainer::add(), and TCLAP::Arg::blankChar().

Here is the call graph for this function:

Member Function Documentation

◆ combinedSwitchesMatch()

bool TCLAP::SwitchArg::combinedSwitchesMatch ( std::string &  combined)
inline

Checks a string to see if any of the chars in the string match the flag for this Switch.

Definition at line 155 of file SwitchArg.h.

References TCLAP::Arg::_alreadySet, TCLAP::Arg::_checkWithVisitor(), TCLAP::Arg::_flag, TCLAP::Arg::_setBy, _value, TCLAP::Arg::blankChar(), TCLAP::Arg::delimiter(), TCLAP::Arg::flagStartString(), TCLAP::Arg::nameStartString(), and TCLAP::Arg::toString().

Referenced by processArg(), and TCLAP::MultiSwitchArg::processArg().

Here is the call graph for this function:

◆ getValue()

bool TCLAP::SwitchArg::getValue ( ) const
inline

Returns bool, whether or not the switch has been set.

Definition at line 105 of file SwitchArg.h.

References _value.

◆ operator bool()

TCLAP::SwitchArg::operator bool ( ) const
inline

A SwitchArg can be used as a boolean, indicating whether or not the switch has been set.

This is the same as calling getValue()

Definition at line 112 of file SwitchArg.h.

References _value, and reset().

Here is the call graph for this function:

◆ processArg()

bool TCLAP::SwitchArg::processArg ( int *  i,
std::vector< std::string > &  args 
)
inlinevirtual

Handles the processing of the argument.

This re-implements the Arg version of this method to set the _value of the argument appropriately.

Parameters
i- Pointer the the current argument in the list.
args- Mutable list of strings. Passed in from main().

Implements TCLAP::Arg.

Reimplemented in TCLAP::MultiSwitchArg.

Definition at line 203 of file SwitchArg.h.

References TCLAP::Arg::_setBy, TCLAP::Arg::argMatches(), combinedSwitchesMatch(), and TCLAP::Arg::toString().

Here is the call graph for this function:

◆ reset()

void TCLAP::SwitchArg::reset ( )
inlinevirtual

Clears the Arg object and allows it to be reused by new command lines.

Reimplemented from TCLAP::Arg.

Reimplemented in TCLAP::MultiSwitchArg.

Definition at line 228 of file SwitchArg.h.

References _default, _value, and TCLAP::Arg::reset().

Referenced by operator bool().

Here is the call graph for this function:

Member Data Documentation

◆ _default

bool TCLAP::SwitchArg::_default
protected

Used to support the reset() method so that ValueArg can be reset to their constructed value.

Definition at line 51 of file SwitchArg.h.

Referenced by reset().

◆ _value

bool TCLAP::SwitchArg::_value
protected

The value of the switch.

Definition at line 45 of file SwitchArg.h.

Referenced by combinedSwitchesMatch(), getValue(), operator bool(), and reset().


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