equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-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: The observer of CBtsacActive's request events |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_BTSACACTIVEOBSERVER_H |
|
20 #define M_BTSACACTIVEOBSERVER_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32base.h> |
|
24 |
|
25 class CBtsacActive; |
|
26 |
|
27 /** |
|
28 * The observer of CBtsacActive's request events |
|
29 * |
|
30 * This class defines the interface to handle a async request events from CBtsacActive. |
|
31 * |
|
32 * @since S60 v3.1 |
|
33 */ |
|
34 class MBtsacActiveObserver |
|
35 { |
|
36 |
|
37 public: |
|
38 |
|
39 /** |
|
40 * Handles the request completion event. |
|
41 * |
|
42 * @since S60 v3.1 |
|
43 * @param aActive the Active Object to which the request is assigned to. |
|
44 */ |
|
45 virtual void RequestCompletedL(CBtsacActive& aActive) = 0; |
|
46 |
|
47 /** |
|
48 * Handles the cancellation of an outstanding request. |
|
49 * |
|
50 * @since S60 v3.1 |
|
51 * @param aActive the Active Object to which the request is assigned to. |
|
52 */ |
|
53 virtual void CancelRequest(CBtsacActive& aActive) = 0; |
|
54 |
|
55 }; |
|
56 |
|
57 #endif // M_BTSACACTIVEOBSERVER_H |