equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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 Advance Contact Item model is used internally |
|
15 * by PEC Engine and allows advance maintenance |
|
16 * of the contact item |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 |
|
22 #ifndef __MPENGCONTACTITEMADVANCE_H__ |
|
23 #define __MPENGCONTACTITEMADVANCE_H__ |
|
24 |
|
25 |
|
26 // INCLUDES |
|
27 #include <e32base.h> |
|
28 #include "MPEngContactItem.h" |
|
29 |
|
30 |
|
31 // CLASS DECLARATION |
|
32 /** |
|
33 * Advance version of the Contact Item Model |
|
34 * |
|
35 * It supports all functionalities which are intended to be used |
|
36 * by the PEC engine internally. |
|
37 * |
|
38 * @lib PEngListLib2 |
|
39 * @since 3.0 |
|
40 */ |
|
41 class MPEngContactItemAdvance : public MPEngContactItem |
|
42 { |
|
43 |
|
44 public: // New functions |
|
45 |
|
46 |
|
47 protected: //Destructor |
|
48 |
|
49 /** |
|
50 * Virtual inline destructor. |
|
51 * Protected destructor to prohibited deletion trough interface. |
|
52 */ |
|
53 virtual ~MPEngContactItemAdvance() {}; |
|
54 |
|
55 }; |
|
56 #endif // __MPENGCONTACTITEMADVANCE_H__ |
|
57 |
|
58 // End of File |
|
59 |