equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * This class can be used to observe changes that has been happened in |
|
16 * CVRUSBEventHandler class |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef __MVRUSBEVENTOBSERVER_H |
|
22 #define __MVRUSBEVENTOBSERVER_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32def.h> |
|
26 #include <bldvariant.hrh> |
|
27 |
|
28 // CLASS DECLARATION |
|
29 /** |
|
30 * MVRUSBEventObserver |
|
31 */ |
|
32 class MVRUSBEventObserver |
|
33 { |
|
34 public: // Constructors and destructor |
|
35 |
|
36 virtual void HandleUSBEventL() = 0; |
|
37 |
|
38 }; |
|
39 |
|
40 #endif // __MVRUSBEVENTOBSERVER_H |
|
41 |
|
42 // End of File |