summaryrefslogtreecommitdiffhomepage
path: root/MagicEx/src/convert.h
blob: 9bba5b83a63bda144ed5d541b573b941612e966e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"