diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-26 14:55:24 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-26 14:55:24 -0230 |
commit | 20899304e74276a6d9c12ae9f713901e6ebfc840 (patch) | |
tree | 5970a5ff612c59e4bc3147908756ec742a1d09aa /cpp/src/Ice/Reference.h | |
parent | Fixed Windows link error (diff) | |
download | ice-20899304e74276a6d9c12ae9f713901e6ebfc840.tar.bz2 ice-20899304e74276a6d9c12ae9f713901e6ebfc840.tar.xz ice-20899304e74276a6d9c12ae9f713901e6ebfc840.zip |
Bug 3137 - add proxyToProperty
Diffstat (limited to 'cpp/src/Ice/Reference.h')
-rw-r--r-- | cpp/src/Ice/Reference.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/src/Ice/Reference.h b/cpp/src/Ice/Reference.h index 3d2b9b4701c..cba3efb6d39 100644 --- a/cpp/src/Ice/Reference.h +++ b/cpp/src/Ice/Reference.h @@ -23,6 +23,7 @@ #include <Ice/ConnectionIF.h> #include <Ice/SharedContext.h> #include <Ice/Identity.h> +#include <Ice/Properties.h> namespace IceInternal { @@ -117,6 +118,11 @@ public: virtual std::string toString() const; // + // Convert the refernce to its property form. + // + virtual Ice::PropertyDict toProperty(const std::string&) const = 0; + + // // Get a suitable connection for this reference. // virtual Ice::ConnectionIPtr getConnection(bool&) const = 0; @@ -189,6 +195,7 @@ public: virtual void streamWrite(BasicStream*) const; virtual std::string toString() const; + virtual Ice::PropertyDict toProperty(const std::string&) const; virtual Ice::ConnectionIPtr getConnection(bool&) const; virtual void getConnection(const GetConnectionCallbackPtr&) const; @@ -244,6 +251,7 @@ public: virtual void streamWrite(BasicStream*) const; virtual std::string toString() const; + virtual Ice::PropertyDict toProperty(const std::string&) const; virtual bool operator==(const Reference&) const; virtual bool operator!=(const Reference&) const; |