templates.cpp.MultiNodeInterface.template Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-javacc-maven-plugin Show documentation
Show all versions of ph-javacc-maven-plugin Show documentation
Maven 3 Plugin for processing JavaCC grammar files.
class ${NODE_TYPE} : public ${NODE_CLASS:-SimpleNode} {
public: ${NODE_TYPE}(int id);
public: ${NODE_TYPE}(${PARSER_NAME} *p, int id);
#if VISITOR
/** Accept the visitor. **/
public: virtual ${VISITOR_RETURN_TYPE} jjtAccept(${PARSER_NAME}Visitor *visitor, ${VISITOR_DATA_TYPE:-void *} data) const ;
#fi
public: virtual ~${NODE_TYPE}();
};