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
Line 
1#include <jenga/include/smoothie/Smoothie.h>
2
3#include <SmoothieImpl.h>
4#include <ClassImpl.h>
5#include <ProcedureImpl.h>
6#include <LexicalScopingImpl.h>
7
8MetaImpl SmoothieImpl::metaImpl(
9 new ClassesImpl()
10);
11
12CLexicalScopes *Smoothie::Temp::pLexicalScopes = new LexicalScopesImpl();
13
14
15Meta &Smoothie::GetMeta()
16{
17 return SmoothieImpl::metaImpl;
18}
Note: See TracBrowser for help on using the repository browser.