qavrg 0.0.28
|
00001 #ifndef QAVRGSPECSERVER_H 00002 #define QAVRGSPECSERVER_H 00003 00004 #include "qspecserver.h" 00005 00006 class QavrgAcquisition; 00007 00008 class QavrgSpecServer : public QSpecServer 00009 { 00010 Q_OBJECT; 00011 00012 public: 00013 QavrgSpecServer(QavrgAcquisition *acq, QObject *parent=0); 00014 00015 public slots: 00016 void debug_print(QString msg); 00017 00018 protected: 00019 QVariant readProperty(QString name); 00020 00021 private: 00022 QavrgAcquisition *m_Acquisition; 00023 }; 00024 00025 #endif