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