diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-06-07 17:01:30 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-06-07 17:01:30 +0000 |
commit | a737fcdae3a825d1a3df353a08df3c12285cde43 (patch) | |
tree | ce5c2f7aed6194cb4d94cb07e00b7380bc320e7b /cpp/src/Ice/Connector.h | |
parent | Added missing IComparable (diff) | |
download | ice-a737fcdae3a825d1a3df353a08df3c12285cde43.tar.bz2 ice-a737fcdae3a825d1a3df353a08df3c12285cde43.tar.xz ice-a737fcdae3a825d1a3df353a08df3c12285cde43.zip |
More changes for bug 1996
Diffstat (limited to 'cpp/src/Ice/Connector.h')
-rw-r--r-- | cpp/src/Ice/Connector.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/src/Ice/Connector.h b/cpp/src/Ice/Connector.h index 730e87d7709..347997afbce 100644 --- a/cpp/src/Ice/Connector.h +++ b/cpp/src/Ice/Connector.h @@ -22,7 +22,12 @@ class ICE_API Connector : public ::IceUtil::Shared public: virtual TransceiverPtr connect(int) = 0; + virtual Ice::Short type() const = 0; virtual std::string toString() const = 0; + + virtual bool operator==(const Connector&) const = 0; + virtual bool operator!=(const Connector&) const = 0; + virtual bool operator<(const Connector&) const = 0; }; } |