#include <string>
#include <vector>
#include <list>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <tclap/sstream.h>
#include <tclap/ArgException.h>
#include <tclap/Visitor.h>
#include <tclap/CmdLineInterface.h>
#include <tclap/ArgTraits.h>
#include <tclap/StandardTraits.h>
Go to the source code of this file.
|  | 
| class | TCLAP::Arg | 
|  | A virtual base class that defines the essential data for all arguments.  More... 
 | 
|  | 
|  | 
| template<typename T > | 
| void | TCLAP::ExtractValue (T &destVal, const std::string &strVal, ValueLike vl) | 
|  | 
| template<typename T > | 
| void | TCLAP::ExtractValue (T &destVal, const std::string &strVal, StringLike sl) | 
|  | 
◆ TCLAP_FLAGSTARTCHAR
      
        
          | #define TCLAP_FLAGSTARTCHAR   '-' | 
      
 
The char that indicates the beginning of a flag. 
Defaults to '-', but clients can define TCLAP_FLAGSTARTCHAR to override. 
Definition at line 215 of file Arg.h.
 
 
◆ TCLAP_FLAGSTARTSTRING
      
        
          | #define TCLAP_FLAGSTARTSTRING   "-" | 
      
 
The sting that indicates the beginning of a flag. 
Defaults to "-", but clients can define TCLAP_FLAGSTARTSTRING to override. Should be the same as TCLAP_FLAGSTARTCHAR. 
Definition at line 225 of file Arg.h.
 
 
◆ TCLAP_NAMESTARTSTRING
      
        
          | #define TCLAP_NAMESTARTSTRING   "--" | 
      
 
The sting that indicates the beginning of a name. 
Defaults to "--", but clients can define TCLAP_NAMESTARTSTRING to override. 
Definition at line 234 of file Arg.h.