diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-04-17 23:56:50 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-04-17 23:56:50 +0000 |
commit | 7ccd312b97da3a37737c6546649aa59b2cd69a7f (patch) | |
tree | bc05a00abc446fcf664214584126b65c83782802 /cpp/src/Freeze/EvictorI.h | |
parent | Implemented IceUtil.Cache properly (diff) | |
download | ice-7ccd312b97da3a37737c6546649aa59b2cd69a7f.tar.bz2 ice-7ccd312b97da3a37737c6546649aa59b2cd69a7f.tar.xz ice-7ccd312b97da3a37737c6546649aa59b2cd69a7f.zip |
Added back createObject and destroyObject
Diffstat (limited to 'cpp/src/Freeze/EvictorI.h')
-rw-r--r-- | cpp/src/Freeze/EvictorI.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/Freeze/EvictorI.h b/cpp/src/Freeze/EvictorI.h index 836d76e2b5b..91dc4b60675 100644 --- a/cpp/src/Freeze/EvictorI.h +++ b/cpp/src/Freeze/EvictorI.h @@ -47,10 +47,12 @@ public: virtual Ice::ObjectPrx add(const Ice::ObjectPtr&, const Ice::Identity&); virtual Ice::ObjectPrx addFacet(const Ice::ObjectPtr&, const Ice::Identity&, const std::string&); + virtual void createObject(const Ice::Identity&, const Ice::ObjectPtr&); virtual void remove(const Ice::Identity&); virtual void removeFacet(const Ice::Identity&, const std::string&); - + virtual void destroyObject(const Ice::Identity&); + virtual bool hasObject(const Ice::Identity&); virtual bool hasFacet(const Ice::Identity&, const std::string&); |