mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-22 10:58:47 +08:00
16 lines
199 B
C++
16 lines
199 B
C++
#ifndef __ABSTRACT_SYNTAX_TREE_H__
|
|
#define __ABSTRACT_SYNTAX_TREE_H__
|
|
|
|
#include <iostream>
|
|
#include <cstring>
|
|
#include <list>
|
|
#include <stack>
|
|
|
|
class ast_tree
|
|
{
|
|
private:
|
|
|
|
}
|
|
|
|
#endif
|