Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ParserAction/SetOutputFormatsAction.def

    r9cff8b r6ba9ba  
    99#include <vector>
    1010
     11#include "Parameters/Validators/Ops_Validator.hpp"
     12#include "Parameters/Validators/STLVectorValidator.hpp"
     13#include "Parameters/Validators/UniqueValidator.hpp"
     14#include "Parameters/Validators/Specific/ParserTypeValidator.hpp"
     15
    1116// i.e. there is an integer with variable name Z that can be found in
    1217// ValueStorage by the token "Z" -> first column: int, Z, "Z"
    13 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value
     18// "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value
    1419#define paramtypes (std::vector<std::string>)
    1520#define paramtokens ("set-output")
     
    1722#undef paramdefaults
    1823#define paramreferences (FormatList)
     24#define paramvalids \
     25(STLVectorValidator< std::vector<std::string> >(1, 10, ParserTypeValidator()) && UniqueValidator< std::vector<std::string> >())
    1926
    2027#undef statetypes
Note: See TracChangeset for help on using the changeset viewer.