- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ParserAction/SetParserParametersAction.def
r043598 r770ec6 13 13 #include "Parameters/Validators/Specific/KeyValueValidator.hpp" 14 14 #include "Parameters/Validators/Specific/ParserTypeValidator.hpp" 15 #include "Parameters/Specifics/KeyValuePair.hpp"16 15 17 16 // i.e. there is an integer with variable name Z that can be found in 18 17 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 19 18 // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value 20 #define paramtypes (std::string)(std::vector< KeyValuePair>)19 #define paramtypes (std::string)(std::vector<std::string>) 21 20 #define paramtokens ("set-parser-parameters")("parser-parameters") 22 21 #define paramdescriptions ("name of the parser to change")("parameter (key = value;)") … … 25 24 #define paramvalids \ 26 25 (ParserTypeValidator())\ 27 (STLVectorValidator< std::vector< KeyValuePair> >(1, 99, KeyValueValidator()))26 (STLVectorValidator< std::vector<std::string> >(1, 99, KeyValueValidator())) 28 27 29 28 #define statetypes (std::string)
Note:
See TracChangeset
for help on using the changeset viewer.