Ignore:
Timestamp:
Jun 26, 2007, 5:04:50 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/hash.cpp

    r182 r193  
    11#include <jenga/include/smoothie/Smoothie.h>
     2
     3#include <Compiler.h>
    24
    35#include "../BasicCompiler_Common/common.h"
     
    9193            }
    9294            else{
    93                 pobj_c=Smoothie::GetMeta().GetClasses().Find(ObjName);
     95                pobj_c=compiler.GetMeta().GetClasses().Find(ObjName);
    9496                if( pobj_c ){
    9597                    isStatic = true;
     
    189191
    190192UserProc *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 );
    192194    if( pClass ){
    193195        vector<UserProc *> userProcs;
Note: See TracChangeset for help on using the changeset viewer.