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: This file contains the header file of the CPELogHandlingDummy |
|
15 * : class. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef CPELOGHANDLINGDUMMY_H |
|
21 #define CPELOGHANDLINGDUMMY_H |
|
22 |
|
23 //INCLUDES |
|
24 #include <e32base.h> |
|
25 #include <f32file.h> |
|
26 #include <logwrap.h> |
|
27 #include "mpeloghandling.h" |
|
28 |
|
29 // CONSTANTS |
|
30 // None. |
|
31 |
|
32 // MACROS |
|
33 // None. |
|
34 |
|
35 // DATA TYPES |
|
36 // None. |
|
37 |
|
38 // FUNCTION PROTOTYPES |
|
39 // None. |
|
40 |
|
41 // FORWARD DECLARATIONS |
|
42 class CPELogHandlingCommand; |
|
43 class CPELogExternalData; |
|
44 class CPELogEvent; |
|
45 class CLogClient; |
|
46 class MPEPhoneModelInternal; |
|
47 class MPEDataStore; |
|
48 |
|
49 // CLASS DECLARATION |
|
50 |
|
51 class CPELogHandlingDummy : public CBase, |
|
52 public MPELogHandling |
|
53 { |
|
54 public: |
|
55 /** |
|
56 * Two-phased constructor |
|
57 */ |
|
58 static MPELogHandling* NewL(); |
|
59 |
|
60 /** |
|
61 * Destructor. |
|
62 */ |
|
63 virtual IMPORT_C ~CPELogHandlingDummy(); |
|
64 |
|
65 protected: |
|
66 /** |
|
67 * C++ default constructor. |
|
68 */ |
|
69 CPELogHandlingDummy(); |
|
70 |
|
71 public: // From MPELogHandling |
|
72 /** |
|
73 * Save call entry |
|
74 * @since N/A |
|
75 * @param: TInt, call id |
|
76 * @return: possible error code. |
|
77 */ |
|
78 IMPORT_C TInt SaveCallEntry( const TInt aCallId ); |
|
79 }; |
|
80 |
|
81 #endif // CPELOGHANDLINGDUMMY_H |
|
82 |
|
83 // End of File |
|
84 |
|