]> Creatis software - bbtk.git/blob - kernel/src/bbtkVirtualExec.cxx
=== MAJOR RELEASE ====
[bbtk.git] / kernel / src / bbtkVirtualExec.cxx
1 #include "bbtkVirtualExec.h"
2 #include "bbtkInterpreter.h"
3
4 namespace bbtk
5 {
6   VirtualExec::VirtualExec() 
7     : mInterpreter() 
8   {
9   }
10   
11   VirtualExec::~VirtualExec() 
12   {
13   }
14
15   Interpreter::Pointer VirtualExec::GetInterpreter() 
16   { 
17     return mInterpreter.lock(); 
18   }
19
20
21 }
22