From e52db5009fe8e87b5de955e7cd6314fff120812a Mon Sep 17 00:00:00 2001 From: paulc Date: Wed, 3 Jun 2009 16:07:12 +0000 Subject: [PATCH] Made MessageHandler::cleanup() protected. git-svn-id: http://voip.null.ro/svn/yate@2681 acf43c95-373e-0410-b603-e72c3f656dc1 --- yatengine.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/yatengine.h b/yatengine.h index 40201d98..9c5d3b2b 100644 --- a/yatengine.h +++ b/yatengine.h @@ -437,9 +437,15 @@ public: */ void clearFilter(); +protected: + /** + * Remove the handler from its dispatcher, remove any installed filter. + * This method is called internally from destruct and the destructor + */ + void cleanup(); + private: virtual bool receivedInternal(Message& msg); - void cleanup(); void safeNow(); unsigned m_priority; int m_unsafe;