source:
dev/trunk/abdev/BasicCompiler_Common/src/SmoothieImpl.cpp@
192
Last change on this file since 192 was 191, checked in by , 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 | |
8 | MetaImpl SmoothieImpl::metaImpl( |
9 | new ClassesImpl() |
10 | ); |
11 | |
12 | CLexicalScopes *Smoothie::Temp::pLexicalScopes = new LexicalScopesImpl(); |
13 | |
14 | |
15 | Meta &Smoothie::GetMeta() |
16 | { |
17 | return SmoothieImpl::metaImpl; |
18 | } |
Note:
See TracBrowser
for help on using the repository browser.