Fix build.
[libsub.git] / src / locale_convert.h
1 /*
2     Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/static_assert.hpp>
21 #include <string>
22
23 namespace sub {
24
25 template <typename P, typename Q>
26 P
27 locale_convert (Q x, int precision = 16, bool fixed = false)
28 {
29         /* We can't write a generic version of locale_convert; all required
30            versions must be specialised.
31         */
32         BOOST_STATIC_ASSERT (sizeof (Q) == 0);
33 }
34
35 template <>
36 std::string
37 locale_convert (int x, int, bool);
38
39 template <>
40 std::string
41 locale_convert (long int x, int, bool);
42
43 template <>
44 std::string
45 locale_convert (unsigned long int x, int, bool);
46
47 template <>
48 std::string
49 locale_convert (unsigned long long x, int, bool);
50
51 template <>
52 std::string
53 locale_convert (std::string x, int, bool);
54
55 template <>
56 int
57 locale_convert (std::string x, int, bool);
58
59 template <>
60 float
61 locale_convert (std::string x, int, bool);
62
63 }