summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-10-21 15:49:20 +0200
committerMichael Stahl <mstahl@redhat.com>2013-10-21 20:05:45 +0200
commit65fce1128cf99c91c9847d613f11fc9ea2325e08 (patch)
tree11e24bf4ab6ecbf05a04494e0330b22d4af93945 /include
parent3f291812d3579768fa2ae753cae49c6723f25f7e (diff)
AccessibleEventNotifier: remove implementation details from header
Change-Id: Ia422df4066e77bbe3a43a380ba978815fe46dc9c
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/accessibleeventnotifier.hxx32
1 files changed, 1 insertions, 31 deletions
diff --git a/include/comphelper/accessibleeventnotifier.hxx b/include/comphelper/accessibleeventnotifier.hxx
index f0a745baa5a8..19d51aaaf5f2 100644
--- a/include/comphelper/accessibleeventnotifier.hxx
+++ b/include/comphelper/accessibleeventnotifier.hxx
@@ -22,13 +22,8 @@
#include <com/sun/star/accessibility/AccessibleEventObject.hpp>
#include <com/sun/star/accessibility/XAccessibleEventListener.hpp>
-#include <osl/thread.hxx>
-#include <osl/conditn.hxx>
-#include <cppuhelper/interfacecontainer.h>
-#include "comphelper/comphelperdllapi.h"
-#include <map>
-#include <list>
+#include <comphelper/comphelperdllapi.h>
//.........................................................................
namespace comphelper
@@ -44,12 +39,6 @@ namespace comphelper
public:
typedef sal_uInt32 TClientId;
- typedef ::std::pair< TClientId, ::com::sun::star::accessibility::AccessibleEventObject >
- ClientEvent;
-
- typedef ::cppu::OInterfaceContainerHelper EventListeners;
- typedef ::std::map< TClientId, EventListeners*, ::std::less< TClientId > > ClientMap;
-
protected:
AccessibleEventNotifier( ); // never implemented
~AccessibleEventNotifier( ); // never implemented
@@ -130,25 +119,6 @@ namespace comphelper
const ::com::sun::star::accessibility::AccessibleEventObject& _rEvent
) SAL_THROW( ( ) );
- private:
- /// generates a new client id
- COMPHELPER_DLLPRIVATE static TClientId generateId();
-
- /** looks up a client in our client map, asserts if it cannot find it or no event thread is present
-
- @precond
- to be called with our mutex locked
-
- @param _nClient
- the id of the client to loopup
- @param _rPos
- out-parameter for the position of the client in the client map
-
- @return
- <TRUE/> if and only if the client could be found and <arg>_rPos</arg> has been filled with
- it's position
- */
- COMPHELPER_DLLPRIVATE static sal_Bool implLookupClient( const TClientId _nClient, ClientMap::iterator& _rPos );
};
//.........................................................................