]> Shamusworld >> Repos - architektonas/blob - src/forms/dlginsert.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / forms / dlginsert.h
1 #ifndef __DLGINSERT_H__
2 #define __DLGINSERT_H__
3
4 #include "ui_dlginsert.h"
5
6 class Insert;
7
8 class DlgInsert: public QDialog
9 {
10         Q_OBJECT
11
12         public:
13                 DlgInsert(QWidget * parent = 0, Qt::WindowFlags flags = 0);
14                 ~DlgInsert();
15
16         public slots:
17                 void setInsert(Insert & i);
18                 void updateInsert();
19
20         private:
21                 Insert * insert;
22
23         private:
24                 Ui::DlgInsert ui;
25 };
26
27 #endif  // __DLGINSERT_H__