equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-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 "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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @publishedPartner |
|
19 @released |
|
20 */ |
|
21 |
|
22 #ifndef HCTLEVENTOBSERVER_H |
|
23 #define HCTLEVENTOBSERVER_H |
|
24 |
|
25 #include <e32def.h> |
|
26 |
|
27 class TDesC8; |
|
28 |
|
29 const TInt KHCTLEventObserverUid = 0x102736E6; |
|
30 |
|
31 /** |
|
32 Interface for receiving HCI events from the HCTL. |
|
33 |
|
34 Licensee is free to replace this interface because it is used only between |
|
35 licensee components |
|
36 */ |
|
37 class MHCTLEventObserver |
|
38 { |
|
39 public: |
|
40 /** |
|
41 Called when an event has been received from over the HCTL. |
|
42 |
|
43 @param aEvent The data representing the event. |
|
44 */ |
|
45 virtual void MheoProcessEvent(const TDesC8& aEvent) =0; |
|
46 }; |
|
47 |
|
48 #endif // HCTLEVENTOBSERVER_H |