diff options
author | Michi Henning <michi@zeroc.com> | 2007-09-19 11:22:45 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-09-19 11:22:45 +1000 |
commit | cd0338e842b7751c423f5384d247202d3c981be4 (patch) | |
tree | 2b2965f974c3f7f0dda3b94ed4d7c1c49175d375 /cpp/src/Ice/CommunicatorI.cpp | |
parent | Added more tests. Changed stack marshaling to reverse order during (diff) | |
parent | Added missing facet (diff) | |
download | ice-cd0338e842b7751c423f5384d247202d3c981be4.tar.bz2 ice-cd0338e842b7751c423f5384d247202d3c981be4.tar.xz ice-cd0338e842b7751c423f5384d247202d3c981be4.zip |
Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice
Conflicts:
cs/src/Ice/Instance.cs
Removed conflicts. Added more tests. Changed stack
marshaling to reverse order during marshaling instead
of during unmarshaling.
Diffstat (limited to 'cpp/src/Ice/CommunicatorI.cpp')
-rw-r--r-- | cpp/src/Ice/CommunicatorI.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cpp/src/Ice/CommunicatorI.cpp b/cpp/src/Ice/CommunicatorI.cpp index c7ca49ea899..cb01f17259f 100644 --- a/cpp/src/Ice/CommunicatorI.cpp +++ b/cpp/src/Ice/CommunicatorI.cpp @@ -258,6 +258,24 @@ Ice::CommunicatorI::flushBatchRequests() _instance->flushBatchRequests(); } +ObjectPrx +Ice::CommunicatorI::getAdmin() const +{ + return _instance->getAdmin(); +} + +void +Ice::CommunicatorI::addAdminFacet(const Ice::ObjectPtr& servant, const string& facet) +{ + _instance->addAdminFacet(servant, facet); +} + +Ice::ObjectPtr +Ice::CommunicatorI::removeAdminFacet(const string& facet) +{ + return _instance->removeAdminFacet(facet); +} + Ice::CommunicatorI::CommunicatorI(const InitializationData& initData) { __setNoDelete(true); |