src/InventoryYeasts.h

changeset 25
a9da2744609e
child 44
5a9a159c2d34
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/InventoryYeasts.h	Mon Feb 21 21:17:33 2022 +0100
@@ -0,0 +1,32 @@
+#ifndef _INVENTORYYEASTS_H
+#define _INVENTORYYEASTS_H
+
+#include <QDialog>
+
+namespace Ui {
+class InventoryYeasts;
+}
+
+class InventoryYeasts : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit InventoryYeasts(QWidget *parent = nullptr);
+    ~InventoryYeasts();
+
+signals:
+    void firstWindow();
+
+private slots:
+    void on_quitButton_clicked();
+    void on_insertButton_clicked();
+    void on_editButton_clicked();
+    void refreshTable(void);
+
+private:
+    Ui::InventoryYeasts *ui;
+    void edit(int recno);
+};
+
+#endif

mercurial