aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast_expression.hpp~
blob: 7bd9814de37f5ae2b0ea1ec14540d93d18635b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef AST_EXPRESSION_HPP
#define AST_EXPRESSION_HPP

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

    virtual void print() const = 0;
};

#endif