diff options
Diffstat (limited to 'cpp/src/Ice/EventHandler.cpp')
-rw-r--r-- | cpp/src/Ice/EventHandler.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/cpp/src/Ice/EventHandler.cpp b/cpp/src/Ice/EventHandler.cpp new file mode 100644 index 00000000000..d81de4f3bcc --- /dev/null +++ b/cpp/src/Ice/EventHandler.cpp @@ -0,0 +1,31 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#include <Ice/EventHandler.h> + + +#include <Ice/Instance.h> + +using namespace std; +using namespace Ice; +using namespace IceInternal; + +void IceInternal::incRef(EventHandler* p) { p->__incRef(); } +void IceInternal::decRef(EventHandler* p) { p->__decRef(); } + +IceInternal::EventHandler::EventHandler(const InstancePtr& instance) : + _instance(instance), + _stream(instance) +{ +} + +IceInternal::EventHandler::~EventHandler() +{ +} |