diff options
author | Marc Laukien <marc@zeroc.com> | 2004-08-14 13:08:45 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-08-14 13:08:45 +0000 |
commit | 93aabc11aeb3fb124f62ce310d031989e2c9c207 (patch) | |
tree | fbbb43a528c3b223fef0b68867c95618aa961e1f /cpp/src/Ice/EventHandler.cpp | |
parent | IcePack registry hang fix (diff) | |
download | ice-93aabc11aeb3fb124f62ce310d031989e2c9c207.tar.bz2 ice-93aabc11aeb3fb124f62ce310d031989e2c9c207.tar.xz ice-93aabc11aeb3fb124f62ce310d031989e2c9c207.zip |
more fixed connection work
Diffstat (limited to 'cpp/src/Ice/EventHandler.cpp')
-rw-r--r-- | cpp/src/Ice/EventHandler.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/src/Ice/EventHandler.cpp b/cpp/src/Ice/EventHandler.cpp index 8e0c96c0d8b..b53fff03ae9 100644 --- a/cpp/src/Ice/EventHandler.cpp +++ b/cpp/src/Ice/EventHandler.cpp @@ -8,8 +8,6 @@ // ********************************************************************** #include <Ice/EventHandler.h> - - #include <Ice/Instance.h> using namespace std; @@ -19,6 +17,12 @@ using namespace IceInternal; void IceInternal::incRef(EventHandler* p) { p->__incRef(); } void IceInternal::decRef(EventHandler* p) { p->__decRef(); } +InstancePtr +IceInternal::EventHandler::instance() const +{ + return _instance; +} + IceInternal::EventHandler::EventHandler(const InstancePtr& instance) : _instance(instance), _stream(_instance.get()) |