equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 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: Header file for MTelDMAccessory class. |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef MTELDMACCESSORY_H |
|
21 #define MTELDMACCESSORY_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 //CLASS DECLARATION |
|
26 |
|
27 /** |
|
28 * Accessory mode |
|
29 * |
|
30 * @since 3.1 |
|
31 */ |
|
32 class MTelDMAccessory |
|
33 { |
|
34 |
|
35 public: // New functions |
|
36 |
|
37 /** |
|
38 * Is accessory attached ? |
|
39 * @param none |
|
40 * @return True if accessory attached. |
|
41 */ |
|
42 virtual TBool IsAccessoryAttached() = 0; |
|
43 |
|
44 /** |
|
45 * Is any active accessory ? |
|
46 * @param none |
|
47 * @return True if active accessory. |
|
48 */ |
|
49 virtual TBool IsAnyActiveAccessory() = 0; |
|
50 |
|
51 }; |
|
52 |
|
53 #endif // MTELDMACCESSORY_H |
|
54 |
|
55 // End of File |
|