qmca  0.0.20
epicsintegercheckbox.h
Go to the documentation of this file.
1 #ifndef EPICSINTEGERCHECKBOX_H
2 #define EPICSINTEGERCHECKBOX_H
3 
4 #include <QObject>
5 #include <QCheckBox>
6 
7 class EpicsInteger;
8 
9 class EpicsIntegerCheckBox : public QCheckBox
10 {
11  Q_OBJECT;
12 
13  public:
14  EpicsIntegerCheckBox(EpicsInteger *var, QWidget *parent=0);
15  virtual ~EpicsIntegerCheckBox();
16 
17  int value();
18 
19  public slots:
20  void changeEpicsInteger();
21  void setValue(int val);
22 
23  private:
25 };
26 
27 #endif
EpicsIntegerCheckBox(EpicsInteger *var, QWidget *parent=0)
EpicsInteger * m_EpicsInteger