source:
dev/trunk/abdev/BasicCompiler_Common/include/ObjectModule.h@
168
Last change on this file since 168 was 163, checked in by , 17 years ago | |
---|---|
File size: 368 bytes |
Rev | Line | |
---|---|---|
[163] | 1 | #pragma once |
2 | ||
3 | #include "../TypeDef.h" | |
4 | #include "Namespace.h" | |
5 | ||
6 | // プロジェクト中に存在するメタ情報 | |
7 | class Meta{ | |
8 | public: | |
9 | // 名前空間 | |
10 | NamespaceScopesCollection namespaceScopesCollection; | |
11 | ||
12 | // クラス | |
13 | ||
14 | // TypeDef | |
15 | TypeDefCollection typeDefs; | |
16 | ||
17 | // 関数ポインタ | |
18 | vector<ProcPointer *> procPointers; | |
19 | ||
20 | // blittable型 | |
21 | BlittableTypes blittableTypes; | |
22 | }; |
Note:
See TracBrowser
for help on using the repository browser.