sencha-lang/Sencha-lang/ASTInspector.h

20 lines
270 B
C
Raw Normal View History

2012-12-17 22:59:16 +00:00
/*
* ASTInspector.h
*
* Created on: Dec 17, 2012
* Author: att
*/
#ifndef ASTINSPECTOR_H_
#define ASTINSPECTOR_H_
#include "Visitor.h"
class ASTInspector: public Visitor {
public:
ASTInspector();
virtual ~ASTInspector();
};
#endif /* ASTINSPECTOR_H_ */