summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/ThreadNotification.h
diff options
context:
space:
mode:
Diffstat (limited to 'py/modules/IcePy/ThreadNotification.h')
-rw-r--r--py/modules/IcePy/ThreadNotification.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/py/modules/IcePy/ThreadNotification.h b/py/modules/IcePy/ThreadNotification.h
new file mode 100644
index 00000000000..df6c2af780c
--- /dev/null
+++ b/py/modules/IcePy/ThreadNotification.h
@@ -0,0 +1,42 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2006 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