6 lines
158 B
C++
6 lines
158 B
C++
#ifndef ASTNODE_VISITOR_H
|
|
#define ASTNODE_VISITOR_H
|
|
#include "astnode.h"
|
|
#include "expr_astnode.h"
|
|
class ASTNodeVisitor : public ASTNodeVisitorBase {};
|
|
#endif |