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