diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-08-01 10:09:48 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-08-01 10:09:48 -0400 |
commit | 4aa7ae5129a9cb66f5ea26165310e96603af576c (patch) | |
tree | f8ee6859ad547b59cc28eadb1212f403f51dfff7 /cpp/src/Ice/LoggerI.h | |
parent | Do not initialize OpenSSL locks if already done by other library. (diff) | |
download | ice-4aa7ae5129a9cb66f5ea26165310e96603af576c.tar.bz2 ice-4aa7ae5129a9cb66f5ea26165310e96603af576c.tar.xz ice-4aa7ae5129a9cb66f5ea26165310e96603af576c.zip |
Move StringConverter API to namespace Ice
Diffstat (limited to 'cpp/src/Ice/LoggerI.h')
-rw-r--r-- | cpp/src/Ice/LoggerI.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/LoggerI.h b/cpp/src/Ice/LoggerI.h index 580371a9f83..3ab62255d34 100644 --- a/cpp/src/Ice/LoggerI.h +++ b/cpp/src/Ice/LoggerI.h @@ -11,7 +11,7 @@ #define ICE_LOGGER_I_H #include <Ice/Logger.h> -#include <IceUtil/StringConverter.h> +#include <Ice/StringConverter.h> #include <fstream> namespace Ice @@ -22,7 +22,7 @@ class LoggerI : public Logger public: LoggerI(const std::string&, const std::string&, bool convert = true, - const IceUtil::StringConverterPtr& converter = 0, std::size_t sizeMax = 0); + const StringConverterPtr& converter = 0, std::size_t sizeMax = 0); ~LoggerI(); virtual void print(const std::string&); @@ -39,7 +39,7 @@ private: const std::string _prefix; std::string _formattedPrefix; const bool _convert; - const IceUtil::StringConverterPtr _converter; + const StringConverterPtr _converter; std::ofstream _out; std::string _file; @@ -51,7 +51,7 @@ private: // IceUtil::Time _nextRetry; #if defined(_WIN32) && !defined(ICE_OS_WINRT) - const IceUtil::StringConverterPtr _consoleConverter; + const StringConverterPtr _consoleConverter; #endif }; |