summaryrefslogtreecommitdiffhomepage
path: root/MagicEx/src/convert.h
diff options
context:
space:
mode:
Diffstat (limited to 'MagicEx/src/convert.h')
-rw-r--r--MagicEx/src/convert.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/MagicEx/src/convert.h b/MagicEx/src/convert.h
new file mode 100644
index 0000000..9bba5b8
--- /dev/null
+++ b/MagicEx/src/convert.h
@@ -0,0 +1,22 @@
+/* Starshatter: The Open Source Project
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
+ Copyright (c) 1997-2006, Destroyer Studios LLC.
+*/
+
+#pragma once
+
+#include <string>
+
+
+namespace starshatter
+{
+
+
+template <typename Input, typename Output> int convert(const std::string& input, const std::string& output);
+
+
+} // namespace starshatter
+
+
+#include "convert.inl.h"