summaryrefslogtreecommitdiff
path: root/src/raw_convert.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-14 09:33:23 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-14 09:33:23 +0100
commit2f0e6ee9d883abbbc31aca0d1cc80e89eb9b0af2 (patch)
treef1215070c7a4458f8b474fc7163345c6c1c10744 /src/raw_convert.h
parente64f6002a413f7aaffca60387d82c2e91b931ab9 (diff)
parent110dc70856bd0f6ae5ec1931f51a4817c5e38f42 (diff)
Merge master.
Diffstat (limited to 'src/raw_convert.h')
-rw-r--r--src/raw_convert.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/raw_convert.h b/src/raw_convert.h
new file mode 100644
index 00000000..68bbaf7a
--- /dev/null
+++ b/src/raw_convert.h
@@ -0,0 +1,39 @@
+/*
+ Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include <sstream>
+
+namespace dcp {
+
+/** A sort-of version of boost::lexical_cast that does uses the "C"
+ * locale (i.e. no thousands separators and a . for the decimal separator).
+ */
+template <typename P, typename Q>
+P
+raw_convert (Q v)
+{
+ std::stringstream s;
+ s.imbue (std::locale::classic ());
+ s << v;
+ P r;
+ s >> r;
+ return r;
+}
+
+};