equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007 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: Class for extending CCA connection interface. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_MCCACONNECTIONEXT_H |
|
20 #define M_MCCACONNECTIONEXT_H |
|
21 |
|
22 #include <e32std.h> |
|
23 #include <mccaconnection.h> |
|
24 |
|
25 /** @file mccaconnectionext.h |
|
26 * MCCAConnectionExt is used to extend MCCAConnection functionality. |
|
27 * MCCAConnectionExt can be obtained through use of MCCAParameter's extension |
|
28 * function. |
|
29 * @see MCCAParameter |
|
30 * |
|
31 * @lib ccaclient |
|
32 * @since S60 v5.0 |
|
33 */ |
|
34 class MCCAConnectionExt : public MCCAConnection |
|
35 |
|
36 { |
|
37 public: |
|
38 |
|
39 /** |
|
40 * Kills CCA application. This is intended only for special purposes |
|
41 * that cannot be handled otherwise. In normal use there is never a |
|
42 * need to call this function. |
|
43 * |
|
44 * @since S60 5.0 |
|
45 */ |
|
46 virtual void CloseAppL() = 0; |
|
47 |
|
48 /** |
|
49 * Returns an extension point for this interface or NULL. |
|
50 * @param aExtensionUid Uid of extension |
|
51 * @return Extension point or NULL |
|
52 */ |
|
53 virtual TAny* CcaConnectionExtension( |
|
54 TUid /*aExtensionUid*/ ) { return NULL; } |
|
55 }; |
|
56 |
|
57 #endif //M_MCCACONNECTIONEXT_H |
|
58 // End of File |