diff options
author | Jose <jose@zeroc.com> | 2009-07-15 22:20:47 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-07-15 22:20:47 +0200 |
commit | 4293e7261847b861b89a69f54606719538f66b11 (patch) | |
tree | 7edfe18ab1d65b2262feb0070bb423f594284456 /cpp/src/Ice/Reference.h | |
parent | 4019 - Minimal demo still not minimimal (diff) | |
download | ice-4293e7261847b861b89a69f54606719538f66b11.tar.bz2 ice-4293e7261847b861b89a69f54606719538f66b11.tar.xz ice-4293e7261847b861b89a69f54606719538f66b11.zip |
Add ice_getConnectionId to Proxy api.
commit 96047f7c59f38bcdf8b920d2acad61be96db7101
Author: Jose Gutierrez <pepone@dhcppc0.(none)>
Date: Wed Jul 15 22:16:38 2009 +0200
Add ice_getConnectionId to Proxy api.
Diffstat (limited to 'cpp/src/Ice/Reference.h')
-rw-r--r-- | cpp/src/Ice/Reference.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/Ice/Reference.h b/cpp/src/Ice/Reference.h index 8313c5c734c..1dadba0465c 100644 --- a/cpp/src/Ice/Reference.h +++ b/cpp/src/Ice/Reference.h @@ -71,6 +71,7 @@ public: virtual bool getPreferSecure() const = 0; virtual Ice::EndpointSelectionType getEndpointSelection() const = 0; virtual int getLocatorCacheTimeout() const = 0; + virtual std::string getConnectionId() const = 0; // // The change* methods (here and in derived classes) create @@ -169,6 +170,7 @@ public: virtual bool getPreferSecure() const; virtual Ice::EndpointSelectionType getEndpointSelection() const; virtual int getLocatorCacheTimeout() const; + virtual std::string getConnectionId() const; virtual ReferencePtr changeEndpoints(const std::vector<EndpointIPtr>&) const; virtual ReferencePtr changeAdapterId(const std::string&) const; @@ -222,6 +224,7 @@ public: virtual bool getPreferSecure() const; virtual Ice::EndpointSelectionType getEndpointSelection() const; virtual int getLocatorCacheTimeout() const; + virtual std::string getConnectionId() const; virtual ReferencePtr changeCompress(bool) const; virtual ReferencePtr changeEndpoints(const std::vector<EndpointIPtr>&) const; |