aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast_expression.hpp
blob: f67d2d7ea84d3dc6d5348d9933f33a9ea763a739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef AST_EXPRESSION_HPP
#define AST_EXPRESSION_HPP

#include "ast.hpp"

#include <string>
#include <iostream>

class Expression : public Base {
private:
public:
    Expression() {}

    virtual void print() const {
	
    }

    virtual void push(const Base* _base) const {
	std::cerr << "Can't call this function for this type" << std::endl;
	(void)_base;
    }
};

#endif