diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-11-28 11:15:40 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-11-28 11:15:40 +0100 |
commit | 7543bcb52cf1da76f73e9285af36a808feaa6ce4 (patch) | |
tree | 6d827a669d3ba48c6296f1b35520e80f509dcb9e /cpp/src/Ice/RouterInfo.h | |
parent | Fixed IceGrid bug (diff) | |
download | ice-7543bcb52cf1da76f73e9285af36a808feaa6ce4.tar.bz2 ice-7543bcb52cf1da76f73e9285af36a808feaa6ce4.tar.xz ice-7543bcb52cf1da76f73e9285af36a808feaa6ce4.zip |
VC6 compilation error fixes
Diffstat (limited to 'cpp/src/Ice/RouterInfo.h')
-rw-r--r-- | cpp/src/Ice/RouterInfo.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cpp/src/Ice/RouterInfo.h b/cpp/src/Ice/RouterInfo.h index 7a05dacddd2..1bef4343e54 100644 --- a/cpp/src/Ice/RouterInfo.h +++ b/cpp/src/Ice/RouterInfo.h @@ -84,12 +84,15 @@ public: void setAdapter(const Ice::ObjectAdapterPtr&); Ice::ObjectAdapterPtr getAdapter() const; -private: - + // + // The following methods need to be public for access by AMI callbacks. + // std::vector<EndpointIPtr> setClientEndpoints(const Ice::ObjectPrx&); std::vector<EndpointIPtr> setServerEndpoints(const Ice::ObjectPrx&); void addAndEvictProxies(const Ice::ObjectPrx&, const Ice::ObjectProxySeq&); +private: + const Ice::RouterPrx _router; std::vector<EndpointIPtr> _clientEndpoints; std::vector<EndpointIPtr> _serverEndpoints; |