1 /* |
|
2 * Copyright (c) 2003 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 implementation of CPELogHandlingDummy |
|
15 * : class member functions. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 // INCLUDE FILES |
|
22 #include "cpeloghandlingdummy.h" |
|
23 #include "cpelogevent.h" |
|
24 #include <talogger.h> |
|
25 #include <pepanic.pan> |
|
26 #include <mpephonemodelinternal.h> |
|
27 #include <mpedatastore.h> |
|
28 |
|
29 // EXTERNAL DATA STRUCTURES |
|
30 // None |
|
31 |
|
32 // EXTERNAL FUNCTION PROTOTYPES |
|
33 /// None |
|
34 |
|
35 // CONSTANTS |
|
36 // None |
|
37 |
|
38 // MACROS |
|
39 // None |
|
40 |
|
41 // LOCAL CONSTANTS AND MACROS |
|
42 // None |
|
43 |
|
44 // MODULE DATA STRUCTURES |
|
45 // None |
|
46 |
|
47 // LOCAL FUNCTION PROTOTYPES |
|
48 // None |
|
49 |
|
50 // ----------------------------------------------------------------------------- |
|
51 // CPELogHandlingDummy::NewL |
|
52 // Two-phased constructor. |
|
53 // ----------------------------------------------------------------------------- |
|
54 // |
|
55 MPELogHandling* CPELogHandlingDummy::NewL() |
|
56 { |
|
57 TEFLOGSTRING( KTAOBJECT, "LOG CPELogHandlingDummy::NewL start" ); |
|
58 CPELogHandlingDummy* self = new ( ELeave ) CPELogHandlingDummy(); |
|
59 |
|
60 TEFLOGSTRING( KTAOBJECT, "LOG CPELogHandlingDummy::NewL complete" ); |
|
61 return self; |
|
62 } |
|
63 |
|
64 // ----------------------------------------------------------------------------- |
|
65 // CPELogHandlingDummy::~CPELogHandlingDummy |
|
66 // Destructor. |
|
67 // ----------------------------------------------------------------------------- |
|
68 // |
|
69 EXPORT_C CPELogHandlingDummy::~CPELogHandlingDummy() |
|
70 { |
|
71 TEFLOGSTRING( KTAOBJECT, "LOG CPELogHandlingDummy::~CPELogHandlingDummy" ); |
|
72 } |
|
73 |
|
74 // ----------------------------------------------------------------------------- |
|
75 // CPELogHandlingDummy::CPELogHandlingDummy |
|
76 // C++ default constructor can NOT contain any code, that |
|
77 // might leave. |
|
78 // ----------------------------------------------------------------------------- |
|
79 // |
|
80 CPELogHandlingDummy::CPELogHandlingDummy() |
|
81 { |
|
82 TEFLOGSTRING( KTAOBJECT, "LOG CPELogHandlingDummy::CPELogHandlingDummy" ); |
|
83 } |
|
84 |
|
85 // ----------------------------------------------------------------------------- |
|
86 // CPELogHandlingDummy::SaveCallEntry |
|
87 // Dummy method |
|
88 // ----------------------------------------------------------------------------- |
|
89 // |
|
90 EXPORT_C TInt CPELogHandlingDummy::SaveCallEntry |
|
91 ( |
|
92 const TInt /*aCallId*/ |
|
93 ) |
|
94 { |
|
95 return KErrNone; |
|
96 } |
|
97 |
|
98 // End of File |
|