aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast_expression.hpp
blob: 87db997b11f680e77be74786502451316462767b (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 ast_Expression : public ast_Base {
private:
public:
    ast_Expression() {}

    virtual void print() const {
	
    }

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

#endif