00001 #ifndef QSCAN345SELECTACTION_H 00002 #define QSCAN345SELECTACTION_H 00003 00004 #include <QObject> 00005 #include <QAction> 00006 00007 class QScan345Controller; 00008 00009 class QScan345SelectAction : public QAction 00010 { 00011 Q_OBJECT; 00012 00013 public: 00014 QScan345SelectAction(int n, QScan345Controller *ctrl, QObject *parent=NULL); 00015 typedef QAction inherited; 00016 00017 public slots: 00018 void select_scanner(); 00019 00020 private: 00021 int m_ScannerNumber; 00022 QScan345Controller *m_ScanController; 00023 }; 00024 00025 #endif 00026 00027