equal
deleted
inserted
replaced
|
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: Declaration of MASYAdaptation class. MASYAdaptation class |
|
15 * defines an example interface to receive events from lower layer and also command sending. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MASYADAPTATION_H |
|
22 #define MASYADAPTATION_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32base.h> |
|
26 |
|
27 // CONSTANTS |
|
28 |
|
29 // MACROS |
|
30 |
|
31 // DATA TYPES |
|
32 |
|
33 // FUNCTION PROTOTYPES |
|
34 |
|
35 // FORWARD DECLARATIONS |
|
36 class TASYMessage; |
|
37 |
|
38 // CLASS DECLARATION |
|
39 |
|
40 /** |
|
41 * MASYAdaptation |
|
42 */ |
|
43 class MASYAdaptation |
|
44 { |
|
45 |
|
46 public: // New functions |
|
47 |
|
48 /** |
|
49 * Indicates ASY about received response message |
|
50 * @return none |
|
51 */ |
|
52 virtual void ProcessResponseL( TASYMessage& aMessage ) = 0; |
|
53 |
|
54 /** |
|
55 * Indicates ASY about received error response message |
|
56 * @return none |
|
57 */ |
|
58 virtual void ProcessErrorResponseL( TInt aErrorCode, TASYMessage& aMessage ) = 0; |
|
59 |
|
60 /** |
|
61 * Indicates ASY about received event message |
|
62 * @return none |
|
63 */ |
|
64 virtual void RaiseEventL( TASYMessage& aMessage ) = 0; |
|
65 }; |
|
66 |
|
67 #endif // MASYADAPTATION_H |
|
68 |
|
69 // End of File |