]> Shamusworld >> Repos - architektonas/blob - selectionwidget.h
39c844ee2450b1737463907b3d919d42b8bc075c
[architektonas] / selectionwidget.h
1 #ifndef __SELECTIONWIDGET_H__
2 #define __SELECTIONWIDGET_H__
3
4 #include "ui_selectionwidget.h"
5
6 class SelectionWidget: public QWidget
7 {
8         Q_OBJECT
9
10         public:
11                 SelectionWidget(QWidget * parent = 0, Qt::WindowFlags flags = 0);
12                 ~SelectionWidget();
13
14         public slots:
15                 void setNumber(int n);
16
17         private:
18                 Ui::SelectionWidget ui;
19 };
20
21 #endif  // __SELECTIONWIDGET_H__