summaryrefslogtreecommitdiff
path: root/cppe/src/TcpTransport/EndpointFactory.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-07-06 13:08:23 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-07-06 13:08:23 +0000
commit3030ac8c355435c4426c82019669c476f5c76088 (patch)
treec57f7c0a983c44847f93285f0676df49f21707b9 /cppe/src/TcpTransport/EndpointFactory.cpp
parentUse direct proxy for process object instead of indirect proxy (diff)
downloadice-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.cpp18
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;
}