src/global.h

changeset 191
7446ee2fb427
parent 190
bb6c06910f0f
child 194
ea8cce5e7eb9
--- a/src/global.h	Tue May 03 20:05:04 2022 +0200
+++ b/src/global.h	Tue May 03 21:37:12 2022 +0200
@@ -610,8 +610,34 @@
 };
 
 extern const QStringList fermentable_added;
+
+enum HopTypes {
+	HOP_TYPE_BITTERING,
+	HOP_TYPE_AROMA,
+	HOP_TYPE_BOTH
+};
+
 extern const QStringList hop_types;
+
+enum HopForms {
+	HOP_FORMS_PELLET,
+	HOP_FORMS_PLUG,
+	HOP_FORMS_LEAF,
+	HOP_FORMS_LEAF_WET,
+	HOP_FORMS_CRYO
+};
+
 extern const QStringList hop_forms;
+
+enum HopUseat {
+	HOP_USEAT_MASH,
+	HOP_USEAT_FWH,
+	HOP_USEAT_BOIL,
+	HOP_USEAT_AROMA,
+	HOP_USEAT_WHIRLPOOL,
+	HOP_USEAT_DRY_HOP
+};
+
 extern const QStringList hop_useat;
 extern const QStringList misc_types;
 extern const QStringList misc_uses;

mercurial