All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javacc-7.0.3.examples.JJTreeExamples.cpp.eg4.ASTMyID.h Maven / Gradle / Ivy

There is a newer version: 7.0.13
Show newest version
/*
 * ASTMyID.h
 *
 *  Created on: 28 mars 2014
 *      Author: FrancisANDRE
 */

#ifndef ASTMYID_H_
#define ASTMYID_H_
#include "ParserTree.h"

namespace EG4 {

class ASTMyID : public SimpleNode {
private:
	JAVACC_STRING_TYPE name;
public:
	ASTMyID(int i);
	ASTMyID(Parser *p, int id);
	virtual ~ASTMyID();

	void setName(JAVACC_STRING_TYPE image);
	JAVACC_STRING_TYPE toString() const;
};

} /* namespace EG4 */

#endif /* ASTMYID_H_ */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy