summaryrefslogtreecommitdiff
path: root/cpp/src/Freeze/ObjectStore.h
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2008-04-04 09:55:15 -0230
committerDwayne Boone <dwayne@zeroc.com>2008-04-04 09:55:15 -0230
commiteac6b3e8cca36264f6a3ba3bafb365ef58fb1783 (patch)
tree230ddea5d84c41897ee1d48ac19fc4ea0df0a0db /cpp/src/Freeze/ObjectStore.h
parentBug 2991 - installation of policy files (previous changed didn't work for GAC... (diff)
downloadice-eac6b3e8cca36264f6a3ba3bafb365ef58fb1783.tar.bz2
ice-eac6b3e8cca36264f6a3ba3bafb365ef58fb1783.tar.xz
ice-eac6b3e8cca36264f6a3ba3bafb365ef58fb1783.zip
Port to CodeGear C++Builder 2007
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;