1 // Symbol.h
2 
3 #ifndef SYMBOL_H
4 #define SYMBOL_H
5 
6 #include "Type.h"
7 
8 class Symbol
9 {
10 public:
11 	Type type;
12 	std::vector<std::string> names;
13 	std::vector<std::string> dependencies;
14 	std::vector<std::string> ifs;
15 	std::string definition;
16 };
17 
18 #endif//SYMBOL_H
19