summaryrefslogtreecommitdiff
path: root/cpp/src/Freeze/ObjectStore.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Freeze/ObjectStore.h')
-rw-r--r--cpp/src/Freeze/ObjectStore.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/Freeze/ObjectStore.h b/cpp/src/Freeze/ObjectStore.h
index d24a7c487cd..1f9f389035a 100644
--- a/cpp/src/Freeze/ObjectStore.h
+++ b/cpp/src/Freeze/ObjectStore.h
@@ -94,7 +94,14 @@ class ObjectStore : public ObjectStoreBase, public IceUtil::Cache<Ice::Identity,
{
}
+#ifdef __BCPLUSPLUS__
+ bool load(const Ice::Identity& ident, const TransactionIPtr& trans, ObjectRecord& rec)
+ {
+ return ObjectStoreBase::load(ident, trans, rec);
+ }
+#else
using ObjectStoreBase::load;
+#endif
typedef IceUtil::Cache<Ice::Identity, T> Cache;