Replace incorrect uses of raw_convert with a new locale_convert.
[dcpomatic.git] / src / lib / locale_convert.h
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #ifndef DCPOMATIC_LOCALE_CONVERT_H
22 #define DCPOMATIC_LOCALE_CONVERT_H
23
24 #include <boost/static_assert.hpp>
25 #include <string>
26
27 template <typename P, typename Q>
28 P
29 locale_convert (Q x, int precision = 16)
30 {
31         /* We can't write a generic version of locale_convert; all required
32            versions must be specialised.
33         */
34         BOOST_STATIC_ASSERT (sizeof (Q) == 0);
35 }
36
37 template <>
38 std::string
39 locale_convert (int x, int);
40
41 template <>
42 std::string
43 locale_convert (int64_t x, int);
44
45 template <>
46 std::string
47 locale_convert (float x, int precision);
48
49 template <>
50 std::string
51 locale_convert (double x, int precision);
52
53 template <>
54 std::string
55 locale_convert (std::string x, int);
56
57 template <>
58 std::string
59 locale_convert (char* x, int);
60
61 template <>
62 std::string
63 locale_convert (char const * x, int);
64
65 template <>
66 int
67 locale_convert (std::string x, int);
68
69 template <>
70 int64_t
71 locale_convert (std::string x, int);
72
73 template <>
74 float
75 locale_convert (std::string x, int);
76
77 template <>
78 double
79 locale_convert (std::string x, int);
80
81 #endif