aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/initializer.hpp
blob: f7c0daba007a2a2b55feadc4a79017671cf41a3c (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
25
26
27
28
29
#ifndef INITIALIZER_HPP
#define INITIALIZER_HPP

#include "ast.hpp"


class Initializer : public Node {
public:
    Initializer();

    virtual void print() const;
    virtual void printxml() const;
    virtual void printasm() const;
};


class Integer : public Initializer {
public:
    Integer();
};


class StringLiteral : public Initializer {
public:
    StringLiteral();
};


#endif