src/MainWindow.h

changeset 24
684c6e74cc1b
parent 19
c94edc758a5b
child 25
a9da2744609e
--- a/src/MainWindow.h	Sun Feb 20 12:13:22 2022 +0100
+++ b/src/MainWindow.h	Sun Feb 20 20:22:49 2022 +0100
@@ -3,6 +3,7 @@
 
 #include "InventorySuppliers.h"
 #include "InventoryFermentables.h"
+#include "InventoryHops.h"
 #include "Setup.h"
 
 #include <QMainWindow>
@@ -26,12 +27,14 @@
     void on_actionExit_triggered();
     void on_actionSuppliers_triggered();
     void on_actionFermentables_triggered();
+    void on_actionHops_triggered();
     void on_actionSetup_triggered();
     void on_actionAbout_triggered();
 
 public slots:
     void fromInventorySuppliers();
     void fromInventoryFermentables();
+    void fromInventoryHops();
     void fromSetup();
 
 private:
@@ -40,6 +43,7 @@
     // Keep pointers to new windows.
     InventorySuppliers *InventorySuppliersWindow;
     InventoryFermentables *InventoryFermentablesWindow;
+    InventoryHops * InventoryHopsWindow;
     Setup *SetupWindow;
 };
 

mercurial