diff options
Diffstat (limited to 'python/modules/IcePy/Thread.h')
-rw-r--r-- | python/modules/IcePy/Thread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/modules/IcePy/Thread.h b/python/modules/IcePy/Thread.h index 55215522323..5733c4bdce3 100644 --- a/python/modules/IcePy/Thread.h +++ b/python/modules/IcePy/Thread.h @@ -58,16 +58,16 @@ class ThreadHook : public Ice::ThreadNotification { public: - ThreadHook(PyObject*); + ThreadHook(PyObject*, PyObject*, PyObject*); virtual void start(); virtual void stop(); - PyObject* getObject(); - private: PyObjectHandle _threadNotification; + PyObjectHandle _threadStart; + PyObjectHandle _threadStop; }; typedef IceUtil::Handle<ThreadHook> ThreadHookPtr; |