48 typedef vector<string> VectS;
60 Cmdline (
int argc,
const char** argv);
61 explicit Cmdline (
const string cmdline);
63 operator string ()
const;
64 VectS& operator= (
const VectS& source) {
return VectS::operator= (source); }
68 Cmdline (In first, In last) : VectS (first,last) {}
Implementation namespace for support and library code.
Abstraction of the usual int argc, int** argv-Commandline, to be able to treat it as a vector of stri...