Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 /** Event handler and container for all objects being tracked. */
17 #ifndef __RM_DEBUG_EVENTHANDLER_H__
18 #define __RM_DEBUG_EVENTHANDLER_H__
21 class DRM_DebugEventHandler : public DKernelEventHandler
24 DRM_DebugEventHandler();
25 TInt Create(DLogicalDevice* aDevice, DLogicalChannel* aChannel, DThread* aClient);
26 ~DRM_DebugEventHandler();
31 static TUint EventHandler(TKernelEvent aEvent, TAny* a1, TAny* a2, TAny* aThis);
32 TUint HandleEvent(TKernelEvent aType, TAny* a1, TAny* a2);
33 TBool HandleSpecificEvent(TKernelEvent aType, TAny* a1, TAny* a2);
36 /** Lock serialising calls to event handler */
41 DLogicalDevice* iDevice; // open reference to LDD for avoiding lifetime issues
42 DThread* iClientThread;
43 DRM_DebugChannel* iChannel;
45 // typdef for functions which handle our specific events
46 typedef TBool (DRM_DebugChannel::*eventHandler)(TAny* a1, TAny* a2);
47 eventHandler iEventHandlers[EEventLimit];
50 #endif //__RM_DEBUG_EVENTHANDLER_H__