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: Interface for reactive authorization observer |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MCAREACTIVEAUTHOBSERVERPC_H |
|
20 #define MCAREACTIVEAUTHOBSERVERPC_H |
|
21 |
|
22 //INCLUDES |
|
23 #include <e32std.h> |
|
24 |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * Reactive Authorization observer interface to the UI. |
|
30 * Signalling goes from the Engine -> UI. |
|
31 * |
|
32 * @lib wvuiprocessng.lib |
|
33 * @since 3.2 |
|
34 */ |
|
35 class MCAReactiveAuthObserverPC |
|
36 { |
|
37 public: |
|
38 |
|
39 /** |
|
40 * Incoming pending reactive authorization request. |
|
41 */ |
|
42 virtual void HandleRAPendingReqL() = 0; |
|
43 |
|
44 /** |
|
45 * Incoming reactive authorization status message |
|
46 */ |
|
47 virtual void HandleRAStatusL() = 0; |
|
48 |
|
49 /* Error handler, if any of the observer methods leave. |
|
50 * @param aError The error code |
|
51 */ |
|
52 virtual void HandleRAError( TInt aError ) = 0; |
|
53 |
|
54 protected: |
|
55 /** |
|
56 * Destructor. |
|
57 */ |
|
58 virtual ~MCAReactiveAuthObserverPC() {}; |
|
59 }; |
|
60 |
|
61 #endif // MCAREACTIVEAUTHOBSERVERPC_H |
|
62 |
|
63 // End of File |