source: dev/trunk/abdev/BasicCompiler_Common/include/ObjectModule.h@ 163

Last change on this file since 163 was 163, checked in by dai_9181, 17 years ago
File size: 368 bytes
Line 
1#pragma once
2
3#include "../TypeDef.h"
4#include "Namespace.h"
5
6// プロジェクト中に存在するメタ情報
7class Meta{
8public:
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.