aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/ast.hpp
blob: 86c9934ff25416cfbd31b89fcbc2a33d630c5c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef AST_HPP
#define AST_HPP

#include <vector>
#include <string>
#include <iostream>

#include "node.hpp"
#include "expression.hpp"
#include "type.hpp"
#include "initializer.hpp"
#include "declaration.hpp"
#include "statement.hpp"
#include "function.hpp"
#include "translation_unit.hpp"

TranslationUnit* parseAST();

#endif