summaryrefslogtreecommitdiffhomepage
path: root/MagicEx/src/convert.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2024-04-08 01:21:41 +0200
committerAki <please@ignore.pl>2024-04-08 01:21:41 +0200
commit3cc6b923edb69907794c3dc6daa61a445b3a56c0 (patch)
tree2e9c736042ef364bba0957052e9fddf0fae41097 /MagicEx/src/convert.h
parent3b1776352524c9f24b478260e18cb04d2d27efb5 (diff)
downloadstarshatter-3cc6b923edb69907794c3dc6daa61a445b3a56c0.zip
starshatter-3cc6b923edb69907794c3dc6daa61a445b3a56c0.tar.gz
starshatter-3cc6b923edb69907794c3dc6daa61a445b3a56c0.tar.bz2
Added 3ds2mag converter
Solidified the converters a bit to prevent selected segvs/page faults.
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"