equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2005 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 MPELogHandling class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MPELOGHANDLING_H |
|
20 #define MPELOGHANDLING_H |
|
21 |
|
22 //INCLUDES |
|
23 #include <pevirtualengine.h> |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 class MPEPhoneModelInternal; |
|
27 |
|
28 /** |
|
29 * Virtual interface of log handling subsystem |
|
30 * |
|
31 * @lib LogHandling.lib |
|
32 * @since Series60_4.0 |
|
33 */ |
|
34 class MPELogHandling |
|
35 { |
|
36 public: |
|
37 /** |
|
38 * Destructor |
|
39 */ |
|
40 virtual ~MPELogHandling( ) |
|
41 { |
|
42 // empty destructor |
|
43 }; |
|
44 |
|
45 /** |
|
46 * Save call entry |
|
47 * @since N/A |
|
48 * @param: TInt, call id |
|
49 * @return: possible error code. |
|
50 */ |
|
51 virtual TInt SaveCallEntry( const TInt aCallId ) = 0; |
|
52 }; |
|
53 |
|
54 #endif // MPELOGHANDLING_H |
|
55 |
|
56 //End of file |
|