src/InventoryHops.h

changeset 24
684c6e74cc1b
child 44
5a9a159c2d34
equal deleted inserted replaced
23:1ac3fb2569c1 24:684c6e74cc1b
1 #ifndef _INVENTORYHOPS_H
2 #define _INVENTORYHOPS_H
3
4 #include <QDialog>
5
6 namespace Ui {
7 class InventoryHops;
8 }
9
10 class InventoryHops : public QDialog
11 {
12 Q_OBJECT
13
14 public:
15 explicit InventoryHops(QWidget *parent = nullptr);
16 ~InventoryHops();
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::InventoryHops *ui;
29 void edit(int recno);
30 };
31
32 #endif

mercurial