source: dev/trunk/jenga/include/smoothie/ObjectModule.h@ 170

Last change on this file since 170 was 170, checked in by dai_9181, 17 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// プロジェクト中に存在するメタ情報
8class Meta{
9public:
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.