summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-01-11 13:05:50 +0000
committerRüdiger Timm <rt@openoffice.org>2005-01-11 13:05:50 +0000
commit2a035708caea12061622e4bf0a9de3c93e325f16 (patch)
tree3d69d1e9086f139bb367e54bd5a21ae8e0a8bf1f /toolkit
parent6dcdb71b5fcd61da68349c01f44b65e2d3047249 (diff)
INTEGRATION: CWS sb25 (1.8.10); FILE MERGED
2004/11/25 18:14:43 mt 1.8.10.1: #i37760# Less exports...
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/inc/toolkit/helper/macros.hxx16
1 files changed, 14 insertions, 2 deletions
diff --git a/toolkit/inc/toolkit/helper/macros.hxx b/toolkit/inc/toolkit/helper/macros.hxx
index 3215b6d61a6b..e7f1b54d01d9 100644
--- a/toolkit/inc/toolkit/helper/macros.hxx
+++ b/toolkit/inc/toolkit/helper/macros.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: macros.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: pjunck $ $Date: 2004-10-27 14:08:49 $
+ * last change: $Author: rt $ $Date: 2005-01-11 14:05:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -179,6 +179,18 @@ public: \
// -------------------------------------------------------------------------------------
+#define DECL_LISTENERMULTIPLEXER_START_DLLPUB( ClassName, InterfaceName ) \
+class TOOLKIT_DLLPUBLIC ClassName : public ListenerMultiplexerBase, public InterfaceName \
+{ \
+public: \
+ ClassName( ::cppu::OWeakObject& rSource ); \
+ ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); \
+ void SAL_CALL acquire() throw() { ListenerMultiplexerBase::acquire(); } \
+ void SAL_CALL release() throw() { ListenerMultiplexerBase::release(); } \
+ void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException);
+
+// -------------------------------------------------------------------------------------
+
#define DECL_LISTENERMULTIPLEXER_END \
};