src/InventoryWaters.h

changeset 29
76846c99f827
child 46
404b79f6a681
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/InventoryWaters.h	Sat Feb 26 16:34:20 2022 +0100
@@ -0,0 +1,32 @@
+#ifndef _INVENTORYWATERS_H
+#define _INVENTORYWATERS_H
+
+#include <QDialog>
+
+namespace Ui {
+class InventoryWaters;
+}
+
+class InventoryWaters : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit InventoryWaters(QWidget *parent = nullptr);
+    ~InventoryWaters();
+
+signals:
+    void firstWindow();
+
+private slots:
+    void on_quitButton_clicked();
+    void on_insertButton_clicked();
+    void on_editButton_clicked();
+    void refreshTable(void);
+
+private:
+    Ui::InventoryWaters *ui;
+    void edit(int recno);
+};
+
+#endif

mercurial