summaryrefslogtreecommitdiffstats
path: root/Sencha-lang/Visitor.h
blob: 85d4dfaa2b480fefb9840b9574a50c89282264b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Visitor.h
 *
 *  Created on: Dec 17, 2012
 *      Author: att
 */

#ifndef VISITOR_H_
#define VISITOR_H_
#include "AST/ASTNode.h"

class Visitor {
public:
	Visitor();
	virtual void visit(ASTNode * node/*something*/) = 0;
	virtual ~Visitor();
};

#endif /* VISITOR_H_ */