// ********************************************************************** // // Copyright (c) 2003-2004 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef ICE_ROUTING_TABLE_H #define ICE_ROUTING_TABLE_H #include #include #include #include #include namespace Ice { struct Identity; } namespace IceInternal { class ICE_API RoutingTable : public IceUtil::Shared, public IceUtil::Mutex { public: RoutingTable(); // // Clear the contents of the routing table. // void clear(); // // Returns false if the Proxy exists already. // bool add(const Ice::ObjectPrx&); // // Returns null if no Proxy exists for the given identity. // Ice::ObjectPrx get(const Ice::Identity&); private: std::map _table; std::map::iterator _tableHint; }; } #endif