equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2007 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: Header file for MCSPCallErrorObserver class for |
|
15 * observing errors related to call requests, e.g. dialling. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MCSPCALLERROROBSERVER_H |
|
22 #define MCSPCALLERROROBSERVER_H |
|
23 |
|
24 //INCLUDES |
|
25 #include <ccpdefs.h> |
|
26 |
|
27 |
|
28 |
|
29 // CLASS DECLARATION |
|
30 |
|
31 /** |
|
32 * Interface for monitoring incoming call. |
|
33 * |
|
34 * @since S60 3.2 |
|
35 */ |
|
36 class MCSPCallErrorObserver |
|
37 { |
|
38 public: |
|
39 |
|
40 /** |
|
41 * Informs about failed dial. |
|
42 * @param aErrorCode |
|
43 */ |
|
44 virtual void DialRequestFailed( TInt aErrorCode ) = 0; |
|
45 |
|
46 /** |
|
47 * Informs about failed emergency dial. |
|
48 * @param aErrorCode |
|
49 */ |
|
50 virtual void EmergencyDialRequestFailed( TInt aErrorCode ) = 0; |
|
51 |
|
52 /** |
|
53 * Informs about erroneous request. |
|
54 * @since S60 3.2 |
|
55 * @param aError request related to the error. |
|
56 */ |
|
57 virtual void NotifyErrorOccurred( TCCPError aErr ) = 0; |
|
58 |
|
59 |
|
60 |
|
61 }; |
|
62 |
|
63 #endif // MINCOMINGCALLOBSERVER_H |
|
64 |
|
65 //End of file |
|