|
1 /* |
|
2 * Copyright (c) 2002-2004 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: Observer class for Timeout call backfunctions of ProcessResponse |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MACCSRVPROCESSCOMMANDOBSERVER_H |
|
20 #define MACCSRVPROCESSCOMMANDOBSERVER_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32svr.h> |
|
24 #include <e32base.h> |
|
25 |
|
26 // CONSTANTS |
|
27 |
|
28 // MACROS |
|
29 |
|
30 // DATA TYPES |
|
31 |
|
32 // FUNCTION PROTOTYPES |
|
33 |
|
34 // FORWARD DECLARATIONS |
|
35 |
|
36 // CLASS DECLARATION |
|
37 |
|
38 /** |
|
39 * Observer class for call back functions from ASY to Server |
|
40 * |
|
41 * @lib AccServer.exe |
|
42 * @since S60 3.1 |
|
43 */ |
|
44 NONSHARABLE_CLASS( MAccSrvProcessCommandObserver ) |
|
45 { |
|
46 public: // Constructors and destructor |
|
47 |
|
48 public: // New functions |
|
49 |
|
50 /** |
|
51 * Callback function for handling time out of ProcessResponse |
|
52 * for ProcessCommand init |
|
53 * @since S60 3.1 |
|
54 * @param void |
|
55 * @return void |
|
56 */ |
|
57 virtual void CompleteProcessCommandInitL() = 0; |
|
58 |
|
59 /** |
|
60 * Callback function for handling time out of ProcessResponse |
|
61 * @since S60 3.1 |
|
62 * @param void |
|
63 * @return void |
|
64 */ |
|
65 virtual void ProcessCommandTimeOutCompleteL() = 0; |
|
66 |
|
67 public: // Functions from base classes |
|
68 |
|
69 protected: // New functions |
|
70 |
|
71 protected: // Functions from base classes |
|
72 |
|
73 private: |
|
74 |
|
75 public: // Data |
|
76 |
|
77 protected: // Data |
|
78 |
|
79 private: // Data |
|
80 |
|
81 public: // Friend classes |
|
82 |
|
83 protected: // Friend classes |
|
84 |
|
85 private: // Friend classes |
|
86 }; |
|
87 |
|
88 #endif // MACCSRVPROCESSCOMMANDOBSERVER_H |
|
89 |
|
90 // End of File |