diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 13:08:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 13:08:23 +0000 |
commit | 3030ac8c355435c4426c82019669c476f5c76088 (patch) | |
tree | c57f7c0a983c44847f93285f0676df49f21707b9 /cppe/src/TcpTransport/EndpointFactory.cpp | |
parent | Use direct proxy for process object instead of indirect proxy (diff) | |
download | ice-3030ac8c355435c4426c82019669c476f5c76088.tar.bz2 ice-3030ac8c355435c4426c82019669c476f5c76088.tar.xz ice-3030ac8c355435c4426c82019669c476f5c76088.zip |
Renamed namespace back to Ice
Diffstat (limited to 'cppe/src/TcpTransport/EndpointFactory.cpp')
-rw-r--r-- | cppe/src/TcpTransport/EndpointFactory.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cppe/src/TcpTransport/EndpointFactory.cpp b/cppe/src/TcpTransport/EndpointFactory.cpp index 5417c993540..9a51e8b93b3 100644 --- a/cppe/src/TcpTransport/EndpointFactory.cpp +++ b/cppe/src/TcpTransport/EndpointFactory.cpp @@ -13,23 +13,23 @@ #include <IceE/BasicStream.h> using namespace std; -using namespace IceE; -using namespace IceEInternal; +using namespace Ice; +using namespace IceInternal; -void IceEInternal::incRef(EndpointFactory* p) { p->__incRef(); } -void IceEInternal::decRef(EndpointFactory* p) { p->__decRef(); } +void IceInternal::incRef(EndpointFactory* p) { p->__incRef(); } +void IceInternal::decRef(EndpointFactory* p) { p->__decRef(); } -IceEInternal::EndpointFactory::EndpointFactory(const InstancePtr& instance) +IceInternal::EndpointFactory::EndpointFactory(const InstancePtr& instance) : _instance(instance) { } -IceEInternal::EndpointFactory::~EndpointFactory() +IceInternal::EndpointFactory::~EndpointFactory() { } EndpointPtr -IceEInternal::EndpointFactory::create(const std::string& str) const +IceInternal::EndpointFactory::create(const std::string& str) const { const string delim = " \t\n\r"; @@ -60,7 +60,7 @@ IceEInternal::EndpointFactory::create(const std::string& str) const } EndpointPtr -IceEInternal::EndpointFactory::read(BasicStream* s) const +IceInternal::EndpointFactory::read(BasicStream* s) const { Short type; s->read(type); @@ -78,7 +78,7 @@ IceEInternal::EndpointFactory::read(BasicStream* s) const } void -IceEInternal::EndpointFactory::destroy() +IceInternal::EndpointFactory::destroy() { _instance = 0; } |