1 /* |
|
2 * Copyright (c) 2002-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: This file contains the header file of the CPhoneGsmMiscHandler |
|
15 * class |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef CPEPARSERMISCHANDLER_H |
|
21 #define CPEPARSERMISCHANDLER_H |
|
22 |
|
23 //INCLUDES |
|
24 #include "cphonegsmmischandler.h" |
|
25 #include <pevirtualengine.h> |
|
26 |
|
27 // CONSTANTS |
|
28 // None |
|
29 |
|
30 // MACROS |
|
31 // None |
|
32 |
|
33 // DATA TYPES |
|
34 // None |
|
35 |
|
36 // FUNCTION PROTOTYPES |
|
37 // None |
|
38 |
|
39 // FORWARD DECLARATIONS |
|
40 class CPEMessageHandler; |
|
41 class MPECallHandling; |
|
42 |
|
43 // CLASS DECLARATION |
|
44 |
|
45 /** |
|
46 * Provides processing for miscellaneous Phone Parser requests |
|
47 * |
|
48 * @lib phoneenginegsm.lib |
|
49 * @since Series 60 4.0 |
|
50 */ |
|
51 NONSHARABLE_CLASS( CPEParserMiscHandler ) |
|
52 : public CPhoneGsmMiscHandler |
|
53 { |
|
54 public: //Constructors and descructor |
|
55 /** |
|
56 * C++ default constructor. |
|
57 */ |
|
58 CPEParserMiscHandler( CPEMessageHandler& aOwner, MPECallHandling& aCallHandling ); |
|
59 |
|
60 /** |
|
61 * Destructor. |
|
62 */ |
|
63 ~CPEParserMiscHandler(); |
|
64 |
|
65 public: // Functions from base classes |
|
66 |
|
67 /** |
|
68 * Process IMEI display |
|
69 */ |
|
70 void ProcessShowIMEIL(); |
|
71 |
|
72 /** |
|
73 * Process USSD request |
|
74 * @param aString, USSD string to be sent |
|
75 */ |
|
76 void ProcessUssdL( const TDesC& aString ); |
|
77 |
|
78 private: |
|
79 // Handle to object which owns this requester |
|
80 CPEMessageHandler& iOwner; |
|
81 // Handle to the protocol specific Call Handling subsystem |
|
82 MPECallHandling& iCallHandling; |
|
83 }; |
|
84 |
|
85 #endif // CPEPARSERMISCHANDLER_H |
|
86 |
|
87 // End of File |
|
88 |
|