template<typename T, typename charT = char>
class hboost::program_options::fixedSizeTypedValue< T, charT >
Class to implement a multi-token with a fixed number of arguments. Instead of having a multitoken() parameter which can take any number of arguments, this can be used to limit the number of arguments to a fixed range. Example usage:
( "res,r", fixedSizeMultiToken<std::vector<int>>(2) )
( "colorspace", fixedSizeMultiToken<std::vector<std::string>>(2) )
( "position-xyz", fixedSizeMultiToken<std::vector<fpreal>>(3) )
( "uv", fixedSizeMultiToken<std::vector<fpreal>>(2, 3) )
Definition at line 38 of file UT_ProgramOptions.h.