diff options
author | Jose <jose@zeroc.com> | 2015-12-21 20:21:21 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-21 20:21:21 +0100 |
commit | 31607cd5a0db7bdc56a938e78155eaf076a5e06d (patch) | |
tree | 8676c30e797a7e3797de4aa43d158da42f927ad8 /cpp/src/Ice/WSEndpoint.h | |
parent | Also define stream creation methods for the C++11 mapping (diff) | |
download | ice-31607cd5a0db7bdc56a938e78155eaf076a5e06d.tar.bz2 ice-31607cd5a0db7bdc56a938e78155eaf076a5e06d.tar.xz ice-31607cd5a0db7bdc56a938e78155eaf076a5e06d.zip |
C++ shared_from_this simplifications
Diffstat (limited to 'cpp/src/Ice/WSEndpoint.h')
-rw-r--r-- | cpp/src/Ice/WSEndpoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/WSEndpoint.h b/cpp/src/Ice/WSEndpoint.h index a5f4a89d09a..99d97a7a5b5 100644 --- a/cpp/src/Ice/WSEndpoint.h +++ b/cpp/src/Ice/WSEndpoint.h @@ -31,7 +31,7 @@ public: virtual Ice::EndpointInfoPtr getWSInfo(const std::string&) const = 0; }; -class WSEndpoint : public EndpointI +class WSEndpoint : public EndpointI, public ICE_ENABLE_SHARED_FROM_THIS(WSEndpoint) { public: |