src/MainWindow.h

changeset 19
c94edc758a5b
parent 15
c58b82549713
child 24
684c6e74cc1b
--- a/src/MainWindow.h	Thu Feb 17 21:41:52 2022 +0100
+++ b/src/MainWindow.h	Fri Feb 18 15:53:02 2022 +0100
@@ -2,6 +2,7 @@
 #define _MAINWINDOW_H
 
 #include "InventorySuppliers.h"
+#include "InventoryFermentables.h"
 #include "Setup.h"
 
 #include <QMainWindow>
@@ -24,11 +25,13 @@
 private slots:
     void on_actionExit_triggered();
     void on_actionSuppliers_triggered();
+    void on_actionFermentables_triggered();
     void on_actionSetup_triggered();
     void on_actionAbout_triggered();
 
 public slots:
     void fromInventorySuppliers();
+    void fromInventoryFermentables();
     void fromSetup();
 
 private:
@@ -36,6 +39,7 @@
 
     // Keep pointers to new windows.
     InventorySuppliers *InventorySuppliersWindow;
+    InventoryFermentables *InventoryFermentablesWindow;
     Setup *SetupWindow;
 };
 

mercurial