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