Changeset 159 in dev for trunk/abdev/BasicCompiler_Common/include
- Timestamp:
- Jun 17, 2007, 4:44:57 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common/include
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/Smoothie.h
r143 r159 2 2 3 3 #include "Source.h" 4 #include "../TypeDef.h" 5 #include "Namespace.h" 4 #include "ObjectModule.h" 6 5 7 6 class Smoothie{ … … 33 32 }; 34 33 35 // プロジェクト中に存在するメタ情報36 class Meta{37 public:38 // 名前空間39 static NamespaceScopesCollection namespaceScopesCollection;40 41 // クラス42 43 // TypeDef44 static TypeDefCollection typeDefs;45 46 // 関数ポインタ47 static vector<ProcPointer *> procPointers;48 49 // blittable型50 static BlittableTypes blittableTypes;51 };52 53 34 // コンパイル中に一時的に利用する 54 35 class Temp{ … … 58 39 }; 59 40 41 // プロジェクト中に存在するメタ情報 42 static Meta meta; 43 60 44 static bool isFullCompile; 61 45 };
Note:
See TracChangeset
for help on using the changeset viewer.