blob: 941c82e6c3af91eef8ef6f0c730548101527fb86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* 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_ */
|