areaDetector  3-5-0
EPICS areaDetector framework
SSpinBox.h
Go to the documentation of this file.
1 #ifndef SSPINBOX_H
2 #define SSPINBOX_H
3 
4 #include <QSpinBox>
5 
6 class SSpinBox : public QSpinBox
7 {
8  Q_OBJECT
9 
10 public:
11  SSpinBox(QWidget *parent = 0);
12 
13 public slots:
14  void setMaximumSlot(int max) {setMaximum(max);}
15 };
16 
17 #endif
SSpinBox(QWidget *parent=0)
Definition: SSpinBox.cpp:3
Definition: SSpinBox.h:6
#define max(x, y)
Definition: mar3xx_pck.c:32
void setMaximumSlot(int max)
Definition: SSpinBox.h:14