diff options
Diffstat (limited to 'py/modules/IcePy/ThreadNotification.h')
-rw-r--r-- | py/modules/IcePy/ThreadNotification.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/py/modules/IcePy/ThreadNotification.h b/py/modules/IcePy/ThreadNotification.h deleted file mode 100644 index fe5ca110496..00000000000 --- a/py/modules/IcePy/ThreadNotification.h +++ /dev/null @@ -1,42 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2012 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef ICEPY_THREAD_NOTIFICATION_H -#define ICEPY_THREAD_NOTIFICATION_H - -#include <Config.h> -#include <Util.h> -#include <Ice/Initialize.h> - -namespace IcePy -{ - -// -// ThreadNotificationWrapper delegates to a Python implementation. -// -class ThreadNotificationWrapper : public Ice::ThreadNotification -{ -public: - - ThreadNotificationWrapper(PyObject*); - - virtual void start(); - virtual void stop(); - - PyObject* getObject(); - -private: - - PyObjectHandle _threadNotification; -}; -typedef IceUtil::Handle<ThreadNotificationWrapper> ThreadNotificationWrapperPtr; - -} - -#endif |