Changeset 143 in dev for BasicCompiler_Common/include
- Timestamp:
- Jun 16, 2007, 11:25:37 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/include/Smoothie.h
r128 r143 33 33 }; 34 34 35 // プロジェクト中に存在するメタ情報 35 36 class Meta{ 36 37 public: 38 // 名前空間 39 static NamespaceScopesCollection namespaceScopesCollection; 40 41 // クラス 42 37 43 // TypeDef 38 44 static TypeDefCollection typeDefs; 45 46 // 関数ポインタ 39 47 static vector<ProcPointer *> procPointers; 40 static NamespaceScopesCollection namespaceScopesCollection; 48 49 // blittable型 50 static BlittableTypes blittableTypes; 51 }; 52 53 // コンパイル中に一時的に利用する 54 class Temp{ 55 public: 56 // 現在インポートされている名前空間 41 57 static NamespaceScopesCollection importedNamespaces; 42 static BlittableTypes blittableTypes;43 58 }; 44 59
Note:
See TracChangeset
for help on using the changeset viewer.