source: dev/trunk/abdev/BasicCompiler_Common/src/SmoothieImpl.cpp@ 191

Last change on this file since 191 was 191, checked in by dai_9181, 17 years ago
File size: 367 bytes
RevLine 
[184]1#include <jenga/include/smoothie/Smoothie.h>
2
[191]3#include <SmoothieImpl.h>
[184]4#include <ClassImpl.h>
5#include <ProcedureImpl.h>
6#include <LexicalScopingImpl.h>
7
[191]8MetaImpl SmoothieImpl::metaImpl(
9 new ClassesImpl()
10);
[184]11
12CLexicalScopes *Smoothie::Temp::pLexicalScopes = new LexicalScopesImpl();
[191]13
14
15Meta &Smoothie::GetMeta()
16{
17 return SmoothieImpl::metaImpl;
18}
Note: See TracBrowser for help on using the repository browser.