Ignore:
Timestamp:
Jun 26, 2007, 12:06:12 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/src/SmoothieImpl.cpp

    r184 r191  
    11#include <jenga/include/smoothie/Smoothie.h>
    22
     3#include <SmoothieImpl.h>
    34#include <ClassImpl.h>
    45#include <ProcedureImpl.h>
    56#include <LexicalScopingImpl.h>
    67
    7 Meta Smoothie::meta(
    8                 new ClassesImpl(),
    9                 new ProcPointersImpl()
    10                 );
     8MetaImpl SmoothieImpl::metaImpl(
     9    new ClassesImpl()
     10);
    1111
    1212CLexicalScopes *Smoothie::Temp::pLexicalScopes = new LexicalScopesImpl();
     13
     14
     15Meta &Smoothie::GetMeta()
     16{
     17    return SmoothieImpl::metaImpl;
     18}
Note: See TracChangeset for help on using the changeset viewer.