Changeset 536 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/include
- Timestamp:
- May 3, 2008, 6:32:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/include/Compiler.h
r533 r536 30 30 // 名前空間サポート 31 31 NamespaceSupporter namespaceSupporter; 32 33 // コンパイル中のUserProc/CClass 34 const UserProc *pCompilingUserProc; 35 const CClass *pCompilingClass; 32 36 33 37 // オブジェクトモジュール … … 187 191 const std::string TypeToString( const Type &type ); 188 192 189 // コンパイル中のクラス 190 const CClass *pCompilingClass; 191 193 void ClearCompilingUserProcAndClass(); 194 void SetCompilingClass( const CClass *pClass ); 192 195 void StartProcedureCompile( const UserProc *pUserProc ); 193 196 void FinishProcedureCompile(); 197 198 bool IsGlobalAreaCompiling(); 199 const UserProc &GetCompilingUserProc(); 200 bool IsCompilingClass(); 201 const CClass &GetCompilingClass(); 194 202 }; 195 203
Note:
See TracChangeset
for help on using the changeset viewer.