aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/top_ast.hpp~
blob: 0252bdeed66cd527f7e1b653069f74f9874e184c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TOP_AST_HPP
#define TOP_AST_HPP

#include "ast.hpp"

#include <vector>

class top_ast {
public:
private:
    std::vector<const ast_Base*> ast_vec;
};

#endif