25 #ifndef TCLAP_UNLABELED_VALUE_ARG_H 26 #define TCLAP_UNLABELED_VALUE_ARG_H 81 bool req, T value,
const std::string &typeDesc,
82 bool ignoreable =
false,
Visitor *v = NULL);
108 bool req, T value,
const std::string &typeDesc,
134 bool ignoreable =
false,
Visitor *v = NULL);
170 virtual bool processArg(
int *i, std::vector<std::string> &args);
175 virtual std::string
shortID(
const std::string &)
const {
182 virtual std::string
longID(
const std::string &)
const {
195 virtual void addToList(std::list<Arg *> &argList)
const;
205 const std::string &desc,
bool req,
206 T val,
const std::string &typeDesc,
208 :
ValueArg<T>(
"", name, desc, req, val, typeDesc, v) {
216 const std::string &desc,
bool req,
217 T val,
const std::string &typeDesc,
220 :
ValueArg<T>(
"", name, desc, req, val, typeDesc, v) {
231 const std::string &desc,
bool req,
234 :
ValueArg<T>(
"", name, desc, req, val, constraint, v) {
241 const std::string &desc,
bool req,
245 :
ValueArg<T>(
"", name, desc, req, val, constraint, v) {
281 argList.push_back(const_cast<Arg *>(static_cast<const Arg *const>(
this)));
285 #endif // TCLAP_UNLABELED_VALUE_ARG_H virtual bool hasLabel() const
bool _alreadySet
Indicates whether the argument has been set.
void _extractValue(const std::string &val)
Extracts the value from the string.
A virtual base class that defines the essential data for all arguments.
static void check(bool req, const std::string &argName)
The basic labeled argument that parses a value.
virtual ArgContainer & add(Arg &a)=0
Adds an argument.
UnlabeledValueArg(const std::string &name, const std::string &desc, bool req, T value, const std::string &typeDesc, bool ignoreable=false, Visitor *v=NULL)
UnlabeledValueArg constructor.
The interface that defines the interaction between the Arg and Constraint.
virtual bool operator==(const Arg &a) const
Overrides operator== for specific behavior.
virtual std::string shortID(const std::string &) const
Overrides shortID for specific behavior.
A base class that defines the interface for visitors.
const std::string & getName() const
Returns the argument name.
std::string _description
Description of the argument.
The base class that manages the command line definition and passes along the parsing to the appropria...
virtual std::string toString() const
Returns a simple string representation of the argument.
virtual bool processArg(int *i, std::vector< std::string > &args)
Handles the processing of the argument.
bool _ignoreable
Whether this argument can be ignored, if desired.
std::string _typeDesc
A human readable description of the type to be parsed.
std::string getDescription() const
Returns the argument description.
virtual void addToList(std::list< Arg *> &argList) const
Instead of pushing to the front of list, push to the back.
std::string _name
A single word namd identifying the argument.
bool _hasBlanks(const std::string &s) const
Checks whether a given string has blank chars, indicating that it is a combined SwitchArg.
std::string _setBy
Indicates the value specified to set this flag (like -a or –all).
The basic unlabeled argument that parses a value.
virtual std::string longID(const std::string &) const
Overrides longID for specific behavior.