The Parse Map Macros
Home | Overview | How Do I
The parse map process includes five macros:
- BEGIN_PARSE_MAP Starts the definition of a parse map. It takes the member function’s class and its base class as parameters.
- ON_PARSE_COMMAND Identifies a command. It takes the command, the member function’s class, and a list of parameter types as parameters.
- ON_PARSE_COMMAND_PARAMS Defines the command’s parameter list. It must follow immediately after ON_PARSE_COMMAND. It takes as its parameters the arguments accepted from the client.
- DEFAULT_PARSE_COMMAND Identifies the command used when no command is explicitly specified.
- END_PARSE_MAP Ends the definition of a parse map.
What do you want to know more about?