src/global.h

changeset 131
0115b97e8c39
child 133
08635b028dcf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/global.h	Tue Apr 12 21:03:19 2022 +0200
@@ -0,0 +1,32 @@
+#ifndef	_GLOBAL_H
+#define	_GLOBAL_H
+
+#include <QList>
+#include <QString>
+
+struct Acid
+{
+    QString     name;
+    double      pK1;
+    double      pK2;
+    double      pK3;
+    double      MolWt;
+    double      AcidSG;
+    double      AcidPrc;
+};
+
+extern QList<Acid>	my_acids;
+
+extern QString		my_brewery_name;
+extern double		my_factor_mashhop;
+extern double		my_factor_fwh;
+extern double		my_factor_pellet;
+extern double		my_factor_plug;
+extern double		my_factor_wethop;
+extern double		my_factor_cryohop;
+extern int		my_ibu_method;
+extern int		my_color_method;
+extern double		my_brix_correction;
+extern double		my_grain_absorbtion;
+
+#endif

mercurial