summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/LocalObject.h
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-12-13 04:51:25 +0000
committerMarc Laukien <marc@zeroc.com>2001-12-13 04:51:25 +0000
commitbf1cda1fc7977c7c2c8545a2fd4f1e5c928c1ddf (patch)
tree013dbe6fdccbd8657523e4f44b02537879ce7361 /cpp/include/Ice/LocalObject.h
parentcomparison operators; started with Connection (diff)
downloadice-bf1cda1fc7977c7c2c8545a2fd4f1e5c928c1ddf.tar.bz2
ice-bf1cda1fc7977c7c2c8545a2fd4f1e5c928c1ddf.tar.xz
ice-bf1cda1fc7977c7c2c8545a2fd4f1e5c928c1ddf.zip
Fixes
Diffstat (limited to 'cpp/include/Ice/LocalObject.h')
-rw-r--r--cpp/include/Ice/LocalObject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/Ice/LocalObject.h b/cpp/include/Ice/LocalObject.h
index 74703529bb0..34eb0494e2d 100644
--- a/cpp/include/Ice/LocalObject.h
+++ b/cpp/include/Ice/LocalObject.h
@@ -28,10 +28,10 @@ class ICE_API LocalObject : public ::IceUtil::Shared
{
public:
- bool operator==(const LocalObject&) const;
- bool operator!=(const LocalObject&) const;
- bool operator<(const LocalObject&) const;
- ::Ice::Int ice_hash() const;
+ virtual bool operator==(const LocalObject&) const;
+ virtual bool operator!=(const LocalObject&) const;
+ virtual bool operator<(const LocalObject&) const;
+ virtual ::Ice::Int ice_hash() const;
};
}