qavrg 0.0.28
qavrgserverthread.h
Go to the documentation of this file.
00001 #ifndef QAVRGSERVERTHREAD_H
00002 #define QAVRGSERVERTHREAD_H
00003 
00004 #include <QThread>
00005 
00006 class QavrgServer;
00007 class QavrgScriptingEngine;
00008 
00009 class QavrgServerThread : public QThread
00010 {
00011   Q_OBJECT;
00012 
00013 public:
00014   QavrgServerThread();
00015   ~QavrgServerThread();
00016 
00017   void shutdown();
00018   QavrgServer *server();
00019 
00020 signals:
00021   void printMessage(QString msg);
00022 
00023 protected:
00024   void run();
00025 
00026 private:
00027   QavrgServer           *m_Server;
00028 };
00029 
00030 #endif