ReactOS 0.4.15-dev-7953-g1f49173
Symbol.h
Go to the documentation of this file.
1// Symbol.h
2
3#ifndef SYMBOL_H
4#define SYMBOL_H
5
6#include "Type.h"
7
8class Symbol
9{
10public:
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
Type
Definition: Type.h:7
Definition: Symbol.h:9
std::string definition
Definition: Symbol.h:15
std::vector< std::string > ifs
Definition: Symbol.h:14
std::vector< std::string > names
Definition: Symbol.h:12
Type type
Definition: Symbol.h:11
std::vector< std::string > dependencies
Definition: Symbol.h:13