qavrg 0.0.28
|
00001 #ifndef QAVRGEPICSINTERFACE_H 00002 #define QAVRGEPICSINTERFACE_H 00003 00004 #include <QObject> 00005 00006 class QavrgApplication; 00007 class QavrgFillPattern; 00008 00009 class QavrgEpicsInterface : public QObject 00010 { 00011 Q_OBJECT; 00012 00013 public: 00014 QavrgEpicsInterface(QavrgApplication* app); 00015 00016 void shutdown(); 00017 QavrgFillPattern *fillPattern(); 00018 00019 private: 00020 QavrgApplication *m_Application; 00021 QavrgFillPattern *m_FillPattern; 00022 }; 00023 00024 #endif