aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast_base.hpp
blob: 432a54beb9f2a7dff2431c708ca0077a90321f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef AST_BASE_HPP
#define AST_BASE_HPP

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

class ast_Base {
public:
    virtual ~ast_Base() {}

    virtual void print() const = 0;
};

#endif