Incorporate rosapps. 0.3.15 was branched somewhat incorrectly so rosapps is not synce...
[reactos.git] / modules / rosapps / applications / sysutils / utils / sdkparse / Symbol.h
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