Changeset 193 in dev for trunk/abdev/BasicCompiler_Common/hash.cpp
- Timestamp:
- Jun 26, 2007, 5:04:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/hash.cpp
r182 r193 1 1 #include <jenga/include/smoothie/Smoothie.h> 2 3 #include <Compiler.h> 2 4 3 5 #include "../BasicCompiler_Common/common.h" … … 91 93 } 92 94 else{ 93 pobj_c= Smoothie::GetMeta().GetClasses().Find(ObjName);95 pobj_c=compiler.GetMeta().GetClasses().Find(ObjName); 94 96 if( pobj_c ){ 95 97 isStatic = true; … … 189 191 190 192 UserProc *GetClassMethod( const char *className, const char *methodName ){ 191 const CClass *pClass = Smoothie::GetMeta().GetClasses().Find( className );193 const CClass *pClass = compiler.GetMeta().GetClasses().Find( className ); 192 194 if( pClass ){ 193 195 vector<UserProc *> userProcs;
Note:
See TracChangeset
for help on using the changeset viewer.