summaryrefslogtreecommitdiff
path: root/cppe/test/IceE/operations/Collocated.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/test/IceE/operations/Collocated.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/test/IceE/operations/Collocated.cpp')
-rw-r--r--cppe/test/IceE/operations/Collocated.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/cppe/test/IceE/operations/Collocated.cpp b/cppe/test/IceE/operations/Collocated.cpp
index 6daf941fadf..243a9dddd95 100644
--- a/cppe/test/IceE/operations/Collocated.cpp
+++ b/cppe/test/IceE/operations/Collocated.cpp
@@ -26,7 +26,7 @@ public:
virtual int
run(int argc, char* argv[])
{
- IceE::PropertiesPtr properties = IceE::getDefaultProperties(argc, argv);
+ Ice::PropertiesPtr properties = Ice::getDefaultProperties(argc, argv);
//
// We must set MessageSizeMax to an explicit values, because
@@ -39,21 +39,21 @@ public:
//properties->setProperty("IceE.Trace.Protocol", "10");
//properties->setProperty("IceE.Trace.Network", "10");
- setCommunicator(IceE::initialize(argc, argv));
+ setCommunicator(Ice::initialize(argc, argv));
- IceE::ObjectAdapterPtr adapter = communicator()->createObjectAdapter("TestAdapter");
- IceE::ObjectPtr object = new MyDerivedClassI(adapter, IceE::stringToIdentity("test"));
- adapter->add(object, IceE::stringToIdentity("test"));
+ Ice::ObjectAdapterPtr adapter = communicator()->createObjectAdapter("TestAdapter");
+ Ice::ObjectPtr object = new MyDerivedClassI(adapter, Ice::stringToIdentity("test"));
+ adapter->add(object, Ice::stringToIdentity("test"));
adapter->activate();
//
// Make a separate adapter with a servant locator. We use this to test
- // that ::IceE::Context is correctly passed to checkedCast() operation.
+ // that ::Ice::Context is correctly passed to checkedCast() operation.
//
adapter = communicator()->createObjectAdapter("CheckedCastAdapter");
adapter->activate();
- Test::MyClassPrx allTests(const IceE::CommunicatorPtr&);
+ Test::MyClassPrx allTests(const Ice::CommunicatorPtr&);
allTests(communicator());
return EXIT_SUCCESS;