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

#include <string>
#include <iostream>

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

    virtual void print() const = 0;
};

#endif