Changeset 194 in dev for trunk/jenga/include/smoothie
- Timestamp:
- Jun 26, 2007, 1:48:03 PM (17 years ago)
- Location:
- trunk/jenga/include/smoothie
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jenga/include/smoothie/Namespace.h
r192 r194 69 69 return true; 70 70 } 71 72 bool IsLiving() const;73 74 // 包括しているかをチェック75 // 例:76 // this = "Discoversoft.ActiveBasic"77 // living = "Discoversoft.ActiveBasic"78 // name = "ActiveBasic"79 // この場合、living は name を包括している。80 bool IsCoverd( const string &name ) const;81 bool IsCoverd( const NamespaceScopes &namespaceScopes ) const;82 71 }; 83 72 … … 114 103 115 104 void SplitNamespace( const char *fullName, char *namespaceStr, char *simpleName ) const; 116 117 static bool CollectNamespaces( const char *source, NamespaceScopesCollection &namespaceScopesCollection );118 105 }; -
trunk/jenga/include/smoothie/Smoothie.h
r192 r194 27 27 class Temp{ 28 28 public: 29 // 現在の名前空間30 static NamespaceScopes liveingNamespaceScopes;31 32 // 現在インポートされている名前空間33 static NamespaceScopesCollection importedNamespaces;34 35 29 // コンパイル中のクラス 36 30 static const CClass *pCompilingClass;
Note:
See TracChangeset
for help on using the changeset viewer.