equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2007 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: Phonebook 2 application UI base. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CPBK2APPUIBASE_H |
|
20 #define CPBK2APPUIBASE_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <MPbk2AppUi.h> |
|
24 #include <aknappui.h> |
|
25 #include <aknViewAppUi.h> |
|
26 #include <eikenv.h> |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 /** |
|
31 * Phonebook 2 application UI base. |
|
32 * Common base class for all Phonebook 2 applications. |
|
33 * The inheriting class may select the correct base class type. |
|
34 */ |
|
35 template <typename CBaseClassType> |
|
36 class CPbk2AppUiBase : public CBaseClassType, |
|
37 public MPbk2AppUi |
|
38 { |
|
39 protected: // Constructor and destructor |
|
40 inline CPbk2AppUiBase() |
|
41 {}; |
|
42 ~CPbk2AppUiBase() |
|
43 {}; |
|
44 }; |
|
45 |
|
46 #endif // CPBK2APPUIBASE_H |
|
47 |
|
48 // End of File |