diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 16:41:12 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 16:41:12 +0000 |
commit | 8ff7c2608eb845c3b6b637f4648ae726a11a158b (patch) | |
tree | f1dfb4d3a63752357480561fdd94f37692d8eb47 /cppe/include/IceE/LoggerUtil.h | |
parent | fix some recent changes to build in J2ME (diff) | |
download | ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.bz2 ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.xz ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.zip |
Put back IceUtil namespace
Diffstat (limited to 'cppe/include/IceE/LoggerUtil.h')
-rw-r--r-- | cppe/include/IceE/LoggerUtil.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppe/include/IceE/LoggerUtil.h b/cppe/include/IceE/LoggerUtil.h index 090fa1eac06..d5b1cfbf7b9 100644 --- a/cppe/include/IceE/LoggerUtil.h +++ b/cppe/include/IceE/LoggerUtil.h @@ -16,7 +16,7 @@ namespace Ice { -class ICEE_API Print : private Ice::noncopyable +class ICEE_API Print : private IceUtil::noncopyable { public: @@ -40,7 +40,7 @@ operator<<(Print& out, const std::string& val) return out; } -class ICEE_API Warning : private Ice::noncopyable +class ICEE_API Warning : private IceUtil::noncopyable { public: @@ -64,7 +64,7 @@ operator<<(Warning& out, const std::string& val) return out; } -class ICEE_API Error : private Ice::noncopyable +class ICEE_API Error : private IceUtil::noncopyable { public: @@ -88,7 +88,7 @@ operator<<(Error& out, const std::string& val) return out; } -class ICEE_API Trace : private Ice::noncopyable +class ICEE_API Trace : private IceUtil::noncopyable { public: |