X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fcompose.hpp;fp=src%2Fcompose.hpp;h=faffc41c2a42cfcc36f1281a6a24fded01831cbc;hb=3c93561190ceb883db6b69c1cd37d99cd547fe83;hp=4ce60e336cae889381ce550e47bd6c1b9e923e1a;hpb=846bb291aa34af6e2c533d2d1402e86361552433;p=libdcp.git diff --git a/src/compose.hpp b/src/compose.hpp index 4ce60e33..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 #include #include @@ -113,104 +114,11 @@ namespace StringPrivate } } - template - 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 int& obj) - { - char buffer[64]; - snprintf(buffer, 64, "%d", obj); - s += buffer; - } - - template <> - inline void write(std::string& s, const unsigned int& obj) - { - char buffer[64]; - snprintf(buffer, 64, "%ud", 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 inline Composition &Composition::arg(const T &obj) { - write(os, obj); + os += dcp::locale_convert (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) {