equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: CPEngJanitorPlugin.h |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __CPENGJANITORPLUGIN_H__ |
|
19 #define __CPENGJANITORPLUGIN_H__ |
|
20 |
|
21 // INCLUDES |
|
22 #include <CPEngPluginInterface2.h> |
|
23 #include <E32Base.h> |
|
24 |
|
25 |
|
26 // FORWARD DECLARATION |
|
27 class CPEngContactMapper; |
|
28 |
|
29 // CLASS DEFINITION |
|
30 /** |
|
31 * CPEngJanitorPlugin |
|
32 * |
|
33 * @since 3.0 |
|
34 */ |
|
35 NONSHARABLE_CLASS( CPEngJanitorPlugin ) |
|
36 : public CPEngPluginInterface2 |
|
37 { |
|
38 public: // Constructors and destructors |
|
39 |
|
40 /** |
|
41 * Instantiates CPEngJanitorPlugin object. |
|
42 * |
|
43 * @return New CPEngJanitorPlugin instance. |
|
44 */ |
|
45 static CPEngJanitorPlugin* NewL(); |
|
46 |
|
47 |
|
48 /** |
|
49 * Destructor. |
|
50 * Virtual by CBase. |
|
51 */ |
|
52 ~CPEngJanitorPlugin(); |
|
53 |
|
54 |
|
55 |
|
56 |
|
57 private: // Constructors and destructors |
|
58 |
|
59 /** |
|
60 * C++ default constructor. |
|
61 */ |
|
62 CPEngJanitorPlugin(); |
|
63 |
|
64 |
|
65 /** |
|
66 * Symbian OS constructor. |
|
67 */ |
|
68 void ConstructL(); |
|
69 |
|
70 private: // Data |
|
71 |
|
72 CPEngContactMapper* iContactMapper; |
|
73 |
|
74 }; |
|
75 |
|
76 #endif // __CPENGJANITORPLUGIN_H__ |
|
77 |
|
78 |
|
79 // End of file |
|
80 |