summaryrefslogtreecommitdiff
path: root/include/comphelper/asyncnotification.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-14 11:53:40 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-14 12:20:41 +0100
commit0085bd2866424473de288c4bc6fce31323be5284 (patch)
tree67a6622c43383bb04b563b03163e5f042c13a50a /include/comphelper/asyncnotification.hxx
parent61f9aa6176629c2f8774f4f1ea44ca8c4d8b3c09 (diff)
Model IEventProcessor acquire/release exactly after XInterface
...so classes deriving from both can easily share a single implementation for these functions. Change-Id: I6882dddc8b3ea3b0192d85102a0305494d964dc1
Diffstat (limited to 'include/comphelper/asyncnotification.hxx')
-rw-r--r--include/comphelper/asyncnotification.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/asyncnotification.hxx b/include/comphelper/asyncnotification.hxx
index f33d8231aef5..40aa21ae243d 100644
--- a/include/comphelper/asyncnotification.hxx
+++ b/include/comphelper/asyncnotification.hxx
@@ -76,8 +76,8 @@ namespace comphelper
*/
virtual void processEvent( const AnyEvent& _rEvent ) = 0;
- virtual void SAL_CALL acquire() = 0;
- virtual void SAL_CALL release() = 0;
+ virtual void SAL_CALL acquire() throw () = 0;
+ virtual void SAL_CALL release() throw () = 0;
protected:
~IEventProcessor() {}