summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeCache.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-05-02 17:34:45 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-05-02 17:34:45 +0000
commit4bc0f1f2475d28d5e3e86d3a43cd50413300fb5b (patch)
tree0a183eb32423ca1177e59042d23b04fb8452452e /cpp/src/IceGrid/NodeCache.h
parentmodifying property name a bit (diff)
downloadice-4bc0f1f2475d28d5e3e86d3a43cd50413300fb5b.tar.bz2
ice-4bc0f1f2475d28d5e3e86d3a43cd50413300fb5b.tar.xz
ice-4bc0f1f2475d28d5e3e86d3a43cd50413300fb5b.zip
Cleaned up the server, adapter and object cache classes.
Diffstat (limited to 'cpp/src/IceGrid/NodeCache.h')
-rw-r--r--cpp/src/IceGrid/NodeCache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/NodeCache.h b/cpp/src/IceGrid/NodeCache.h
index 2397afd504f..0fed9a183e8 100644
--- a/cpp/src/IceGrid/NodeCache.h
+++ b/cpp/src/IceGrid/NodeCache.h
@@ -30,7 +30,7 @@ class NodeEntry : public IceUtil::Shared, public IceUtil::Mutex
{
public:
- NodeEntry(Cache<std::string, NodeEntry>&, const std::string&);
+ NodeEntry(NodeCache&, const std::string&);
void addDescriptor(const std::string&, const NodeDescriptor&);
void removeDescriptor(const std::string&);
@@ -54,7 +54,7 @@ private:
ServerDescriptorPtr getServerDescriptor(const ServerInfo&);
- Cache<std::string, NodeEntry>& _cache;
+ NodeCache& _cache;
const std::string _name;
NodeSessionIPtr _session;
std::map<std::string, ServerEntryPtr> _servers;