24 #ifndef TCLAP_UNLABELED_MULTI_ARG_H 25 #define TCLAP_UNLABELED_MULTI_ARG_H 74 bool req,
const std::string &typeDesc,
75 bool ignoreable =
false,
Visitor *v = NULL);
95 bool req,
const std::string &typeDesc,
116 bool ignoreable =
false,
Visitor *v = NULL);
136 bool ignoreable =
false,
Visitor *v = NULL);
146 virtual bool processArg(
int *i, std::vector<std::string> &args);
151 virtual std::string
shortID(
const std::string &)
const {
159 virtual std::string
longID(
const std::string &)
const {
174 virtual void addToList(std::list<Arg *> &argList)
const;
181 const std::string &desc,
bool req,
182 const std::string &typeDesc,
184 :
MultiArg<T>(
"", name, desc, req, typeDesc, v) {
191 const std::string &desc,
bool req,
192 const std::string &typeDesc,
195 :
MultiArg<T>(
"", name, desc, req, typeDesc, v) {
203 const std::string &desc,
bool req,
206 :
MultiArg<T>(
"", name, desc, req, constraint, v) {
213 const std::string &desc,
bool req,
217 :
MultiArg<T>(
"", name, desc, req, constraint, v) {
256 argList.push_back(const_cast<Arg *>(static_cast<const Arg *const>(
this)));
260 #endif // TCLAP_UNLABELED_MULTI_ARG_H bool _alreadySet
Indicates whether the argument has been set.
virtual ArgContainer & add(Arg &a)=0
Adds an argument.
A virtual base class that defines the essential data for all arguments.
static void check(bool req, const std::string &argName)
An argument that allows multiple values of type T to be specified.
virtual bool processArg(int *i, std::vector< std::string > &args)
Handles the processing of the argument.
std::string _typeDesc
The description of type T to be used in the usage.
The interface that defines the interaction between the Arg and Constraint.
virtual bool operator==(const Arg &a) const
Operator ==.
void _extractValue(const std::string &val)
Extracts the value from the string.
Interface that allows adding an Arg to a "container".
virtual void addToList(std::list< Arg *> &argList) const
Pushes this to back of list rather than front.
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.
Just like a MultiArg, except that the arguments are unlabeled.
virtual std::string toString() const
Returns a simple string representation of the argument.
bool _ignoreable
Whether this argument can be ignored, if desired.
std::string getDescription() const
Returns the argument description.
UnlabeledMultiArg(const std::string &name, const std::string &desc, bool req, const std::string &typeDesc, bool ignoreable=false, Visitor *v=NULL)
Constructor.
virtual std::string shortID(const std::string &) const
Returns the a short id string.
std::string _name
A single word namd identifying the argument.
virtual bool hasLabel() const
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).
virtual std::string longID(const std::string &) const
Returns the a long id string.