- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ParserAction/SetOutputFormatsAction.def
r9cff8b r6ba9ba 9 9 #include <vector> 10 10 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 11 16 // i.e. there is an integer with variable name Z that can be found in 12 17 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 13 // "undefine" if no parameters are required, use (NO DEFAULT) for each (undefined) default value18 // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value 14 19 #define paramtypes (std::vector<std::string>) 15 20 #define paramtokens ("set-output") … … 17 22 #undef paramdefaults 18 23 #define paramreferences (FormatList) 24 #define paramvalids \ 25 (STLVectorValidator< std::vector<std::string> >(1, 10, ParserTypeValidator()) && UniqueValidator< std::vector<std::string> >()) 19 26 20 27 #undef statetypes
Note:
See TracChangeset
for help on using the changeset viewer.