summaryrefslogtreecommitdiff
path: root/src/compose.hpp
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-08-15 13:59:08 +0100
committerCarl Hetherington <cth@carlh.net>2016-08-15 13:59:08 +0100
commit42bd2a0ed674d167c27dd4cf214ea91b48315bcf (patch)
tree01524b1ce784fb78424e32dfb7db110d6a4f9686 /src/compose.hpp
parent9b9be06af7a51cac6f957db16ec2695c79ffb8fd (diff)
Hack.osx
Diffstat (limited to 'src/compose.hpp')
-rw-r--r--src/compose.hpp112
1 files changed, 2 insertions, 110 deletions
diff --git a/src/compose.hpp b/src/compose.hpp
index ec016e97..faffc41c 100644
--- a/src/compose.hpp
+++ b/src/compose.hpp
@@ -34,6 +34,7 @@
#ifndef STRING_COMPOSE_H
#define STRING_COMPOSE_H
+#include "locale_convert.h"
#include <boost/filesystem.hpp>
#include <string>
#include <list>
@@ -113,120 +114,11 @@ namespace StringPrivate
}
}
- template <typename T>
- inline void write(std::string& s, const T& obj)
- {
- /* Assume anything not specialized has a to_string() method */
- s += to_string (obj);
- }
-
- template <>
- inline void write(std::string& s, const int64_t& obj)
- {
- char buffer[64];
-#ifdef LIBDCP_WINDOWS
- __mingw_snprintf(buffer, 64, "%" PRId64, obj);
-#else
- snprintf(buffer, 64, "%" PRId64, obj);
-#endif
- s += buffer;
- }
-
- template <>
- inline void write(std::string& s, const uint64_t& obj)
- {
- char buffer[64];
-#ifdef LIBDCP_WINDOWS
- __mingw_snprintf(buffer, 64, "%" PRIu64, obj);
-#else
- snprintf(buffer, 64, "%" PRIu64, obj);
-#endif
- s += buffer;
- }
-
- template <>
- inline void write(std::string& s, const int32_t& obj)
- {
- char buffer[64];
- snprintf(buffer, 64, "%" PRId32, obj);
- s += buffer;
- }
-
- template <>
- inline void write(std::string& s, const uint32_t& obj)
- {
- char buffer[64];
- snprintf(buffer, 64, "%d" PRIu32, obj);
- s += buffer;
- }
-
- template <>
- inline void write(std::string& s, const int16_t& obj)
- {
- char buffer[64];
- snprintf(buffer, 64, "%" PRId16, obj);
- s += buffer;
- }
-
- template <>
- inline void write(std::string& s, const uint16_t& obj)
- {
- char buffer[64];
- snprintf(buffer, 64, "%d" PRIu16, obj);
- s += buffer;
- }
-
- template <>
- inline void write(std::string& s, const float& obj)
- {
- char buffer[64];
- snprintf(buffer, 64, "%f", obj);
- s += buffer;
- }
-
- template <>
- inline void write(std::string& s, const char& obj)
- {
- s += obj;
- }
-
- template <>
- inline void write(std::string& s, const double& obj)
- {
- char buffer[64];
- snprintf(buffer, 64, "%f", obj);
- s += buffer;
- }
-
- template <>
- inline void write(std::string& s, char const * const & obj)
- {
- s += obj;
- }
-
- template <>
- inline void write(std::string& s, char* const & obj)
- {
- s += obj;
- }
-
- template <>
- inline void write(std::string& s, const std::string& obj)
- {
- s += obj;
- }
-
- template <>
- inline void write(std::string& s, const boost::filesystem::path & obj)
- {
- s += obj.string();
- }
-
// implementation of class Composition
template <typename T>
inline Composition &Composition::arg(const T &obj)
{
- write(os, obj);
+ os += dcp::locale_convert<std::string> (obj);
if (!os.empty()) { // manipulators don't produce output
for (specification_map::const_iterator i = specs.lower_bound(arg_no), end = specs.upper_bound(arg_no); i != end; ++i) {