diff options
Diffstat (limited to 'cpp/src/IcePack/NodeInfo.cpp')
-rw-r--r-- | cpp/src/IcePack/NodeInfo.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/cpp/src/IcePack/NodeInfo.cpp b/cpp/src/IcePack/NodeInfo.cpp index 639bb335936..856ec0e930d 100644 --- a/cpp/src/IcePack/NodeInfo.cpp +++ b/cpp/src/IcePack/NodeInfo.cpp @@ -96,36 +96,3 @@ IcePack::NodeInfo::getServerRegistry() const return 0; } } - -Yellow::QueryPrx -IcePack::NodeInfo::getYellowQuery() const -{ - // - // TODO: get it from the IcePack registry instead. - // - try - { - return Yellow::QueryPrx::checkedCast(_communicator->stringToProxy("Yellow/Query@Yellow.Query")); - } - catch(const Ice::LocalException& ex) - { - return 0; - } -} - -Yellow::AdminPrx -IcePack::NodeInfo::getYellowAdmin() const -{ - // - // TODO: get it from the IcePack registry instead. - // - try - { - return Yellow::AdminPrx::checkedCast(_communicator->stringToProxy("Yellow/Admin@Yellow.Admin")); - } - catch(const Ice::LocalException& ex) - { - return 0; - } -} - |