src/InventoryYeasts.h

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

mercurial