diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-04-07 14:38:51 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-04-07 14:38:51 +0000 |
commit | 9b3201f45fa710902df352178f9932d266a392af (patch) | |
tree | c91c7fb29d340fa4a6b61c203d468a03799003ca /cpp/src/Ice/RouterInfo.h | |
parent | Bug 803 - changed communicator initialization (diff) | |
download | ice-9b3201f45fa710902df352178f9932d266a392af.tar.bz2 ice-9b3201f45fa710902df352178f9932d266a392af.tar.xz ice-9b3201f45fa710902df352178f9932d266a392af.zip |
Changed map to set for identities
Diffstat (limited to 'cpp/src/Ice/RouterInfo.h')
-rw-r--r-- | cpp/src/Ice/RouterInfo.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/Ice/RouterInfo.h b/cpp/src/Ice/RouterInfo.h index 46f244e8a15..71d885cb394 100644 --- a/cpp/src/Ice/RouterInfo.h +++ b/cpp/src/Ice/RouterInfo.h @@ -16,6 +16,8 @@ #include <Ice/RouterF.h> #include <Ice/ProxyF.h> +#include <set> + namespace IceInternal { @@ -67,7 +69,7 @@ private: Ice::ObjectPrx _clientProxy; Ice::ObjectPrx _serverProxy; Ice::ObjectAdapterPtr _adapter; - std::map<Ice::Identity, int> _map; + std::set<Ice::Identity> _identities; }; } |