summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/ThreadNotification.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2012-04-25 11:19:48 -0700
committerMark Spruiell <mes@zeroc.com>2012-04-25 11:19:48 -0700
commit9c81cdb4b04f83ee99c5c4126aa1e7ae93e7cabc (patch)
treee0de1a32212fec99274d244632902d2fd635f22f /py/modules/IcePy/ThreadNotification.h
parentRemoved bogus sl/chat/bin directory (diff)
downloadice-9c81cdb4b04f83ee99c5c4126aa1e7ae93e7cabc.tar.bz2
ice-9c81cdb4b04f83ee99c5c4126aa1e7ae93e7cabc.tar.xz
ice-9c81cdb4b04f83ee99c5c4126aa1e7ae93e7cabc.zip
misc. python cleanup
Diffstat (limited to 'py/modules/IcePy/ThreadNotification.h')
-rw-r--r--py/modules/IcePy/ThreadNotification.h42
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