/* * ParseAtomFragmentsAction.def * * Created on: Mar 07, 2016 * Author: heber */ // all includes and forward declarations necessary for non-integral types below #include "Parameters/Validators/Specific/FilePresentValidator.hpp" // i.e. there is an integer with variable name Z that can be found in // ValueStorage by the token "Z" -> first column: int, Z, "Z" // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value #define paramtypes (boost::filesystem::path) #define paramtokens ("parse-atom-fragments") #define paramdescriptions ("path to file containing atom fragments association container to parse") #define paramdefaults (NOPARAM_DEFAULT) #define paramreferences (atomfragments_file) #define paramvalids \ (FilePresentValidator()) #undef statetypes #undef statereferences // some defines for all the names, you may use ACTION, STATE and PARAMS #define CATEGORY Potential #define MENUNAME "potential" #define MENUPOSITION 1 #define ACTIONNAME ParseAtomFragments #define TOKEN "parse-atom-fragments" // finally the information stored in the ActionTrait specialization #define DESCRIPTION "parses atom fragments association present in a file into World's container" #undef SHORTFORM