qmca  0.0.20
epicsintegerinput.h
Go to the documentation of this file.
1 #ifndef EPICSINTEGERINPUT_H
2 #define EPICSINTEGERINPUT_H
3 
4 #include <QSpinBox>
5 
6 class EpicsInteger;
7 
8 class EpicsIntegerInput : public QSpinBox
9 {
10  Q_OBJECT;
11 
12  public:
13  EpicsIntegerInput(EpicsInteger *var, QWidget *parent=0);
14  virtual ~EpicsIntegerInput();
15 
16  public slots:
17  void changeEpicsInteger();
18 
19  private:
21 };
22 
23 #endif
EpicsInteger * m_EpicsInteger
EpicsIntegerInput(EpicsInteger *var, QWidget *parent=0)