src/MainWindow.h

changeset 25
a9da2744609e
parent 24
684c6e74cc1b
child 28
93a70b1502ca
--- a/src/MainWindow.h	Sun Feb 20 20:22:49 2022 +0100
+++ b/src/MainWindow.h	Mon Feb 21 21:17:33 2022 +0100
@@ -4,6 +4,7 @@
 #include "InventorySuppliers.h"
 #include "InventoryFermentables.h"
 #include "InventoryHops.h"
+#include "InventoryYeasts.h"
 #include "Setup.h"
 
 #include <QMainWindow>
@@ -28,6 +29,7 @@
     void on_actionSuppliers_triggered();
     void on_actionFermentables_triggered();
     void on_actionHops_triggered();
+    void on_actionYeasts_triggered();
     void on_actionSetup_triggered();
     void on_actionAbout_triggered();
 
@@ -35,6 +37,7 @@
     void fromInventorySuppliers();
     void fromInventoryFermentables();
     void fromInventoryHops();
+    void fromInventoryYeasts();
     void fromSetup();
 
 private:
@@ -43,7 +46,8 @@
     // Keep pointers to new windows.
     InventorySuppliers *InventorySuppliersWindow;
     InventoryFermentables *InventoryFermentablesWindow;
-    InventoryHops * InventoryHopsWindow;
+    InventoryHops *InventoryHopsWindow;
+    InventoryYeasts *InventoryYeastsWindow;
     Setup *SetupWindow;
 };
 

mercurial