provide python interpreter for mussa qui via a seperate thread
[mussa.git] / qui / threading / InterpreterThread.hpp
1 #ifndef INTERPRETERTHREAD_HPP_
2 #define INTERPRETERTHREAD_HPP_
3
4 #include <QThread>
5
6 class InterpreterThread : public QThread {
7   Q_OBJECT
8 public:
9   void run();
10 private:
11   //! only let ThreadManager create this object.
12   InterpreterThread();
13   friend class ThreadManager;
14 }; 
15 #endif /*INTERPRETERTHREAD_HPP_*/