src/InventoryEquipments.h

changeset 30
0fec6a1abd13
child 47
160e4b407a7d
equal deleted inserted replaced
29:76846c99f827 30:0fec6a1abd13
1 #ifndef _INVENTORYEQUIPS_H
2 #define _INVENTORYEQUIPS_H
3
4 #include <QDialog>
5
6 namespace Ui {
7 class InventoryEquipments;
8 }
9
10 class InventoryEquipments : public QDialog
11 {
12 Q_OBJECT
13
14 public:
15 explicit InventoryEquipments(QWidget *parent = nullptr);
16 ~InventoryEquipments();
17
18 signals:
19 void firstWindow();
20
21 private slots:
22 void on_quitButton_clicked();
23 void on_insertButton_clicked();
24 void on_editButton_clicked();
25 void refreshTable(void);
26
27 private:
28 Ui::InventoryEquipments *ui;
29 void edit(int recno);
30 };
31
32 #endif

mercurial