make compiled in python extension initialization more flexable
[mussa.git] / qui / threading / InterpreterThread.cpp
1 #include "py/python.hpp"
2 #include "qui/threading/InterpreterThread.hpp"
3 #include "qui/threading/ThreadManager.hpp"
4
5 void InterpreterThread::run()
6 {
7   ::get_py()->interpreter();
8 }
9
10 MussaPython *InterpreterThread::get_py()
11 {
12   return ::get_py();
13 }
14
15 InterpreterThread::InterpreterThread()
16 {
17 }