TF++, Miscellaneous classes and modules in C++:

◆ Tfileoption

typedef std::pair<std::string, std::string> tfxx::cmdline::Tfileoption

pair to hold file option ,A std::pair is an STL container. In this it contains a key together with the parameter read from the command line. Given an option

Tfileoption option;

The key value is available through

std::string key=option.first;

and the parameter is available though

std::string parameter=option.second;

A tutorial is available in the detailed description of the Interface provided through xcmdline.h

See also
TEST: Commandline evaluation.

Definition at line 130 of file xcmdline.h.