aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/initializer.hpp
blob: 723f7aabfc0073be0fb237c88b68b1cd4787cdc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef INITIALIZER_HPP
#define INITIALIZER_HPP

#include "ast.hpp"


class Initializer : public Node {
    
};


class Integer : public Initializer {
    
};


class StringLiteral : public Initializer {
    
};


#endif