aboutsummaryrefslogtreecommitdiff
path: root/libs/installer_fomod_plus/share/xml/XmlHelper.h
diff options
context:
space:
mode:
authorSulfurNitride <SulfurNitride@users.noreply.github.com>2026-06-17 01:46:09 -0500
committerSulfurNitride <SulfurNitride@users.noreply.github.com>2026-06-17 01:46:09 -0500
commit05aa96d20ca726908a7d8b1943f86f0c4e11bf18 (patch)
treebd45913d1c7a033088f3456e40c8b44c72818ace /libs/installer_fomod_plus/share/xml/XmlHelper.h
parent30d2c801a01eeb140ddd5adf8676f2626ecff3fa (diff)
Prepare Nexus-safe release cleanup
Diffstat (limited to 'libs/installer_fomod_plus/share/xml/XmlHelper.h')
-rw-r--r--libs/installer_fomod_plus/share/xml/XmlHelper.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/libs/installer_fomod_plus/share/xml/XmlHelper.h b/libs/installer_fomod_plus/share/xml/XmlHelper.h
deleted file mode 100644
index 6934a86..0000000
--- a/libs/installer_fomod_plus/share/xml/XmlHelper.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-#include "ModuleConfiguration.h"
-
-class XmlHelper {
-public:
- static OrderTypeEnum getOrderType(const std::string& orderType, OrderTypeEnum defaultOrder = OrderTypeEnum::Explicit)
- {
- if (orderType == "Explicit")
- return OrderTypeEnum::Explicit;
- if (orderType == "Ascending")
- return OrderTypeEnum::Ascending;
- if (orderType == "Descending")
- return OrderTypeEnum::Descending;
- return defaultOrder; // Ascending for plugins, Explicit for groups
- }
-}; \ No newline at end of file