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: Utility class for Phonebook 2 defined icon identification. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef TPBK2APPICONID_H |
|
20 #define TPBK2APPICONID_H |
|
21 |
|
22 #include <TPbk2IconId.h> |
|
23 #include <Pbk2UID.h> |
|
24 #include <Pbk2IconId.hrh> |
|
25 |
|
26 /** |
|
27 * Utility class for Phonebook 2 defined icon identification. |
|
28 */ |
|
29 class TPbk2AppIconId : public TPbk2IconId |
|
30 { |
|
31 public: // Constructor |
|
32 |
|
33 /** |
|
34 * Constructor. |
|
35 * |
|
36 * @param aPbkCoreIconId The core Phonebook 2 icon id. |
|
37 */ |
|
38 inline TPbk2AppIconId( |
|
39 TPbk2CoreIconId aPbkCoreIconId ) : |
|
40 TPbk2IconId( TUid::Uid( KPbk2UID3 ), aPbkCoreIconId ) |
|
41 { |
|
42 } |
|
43 }; |
|
44 |
|
45 #endif // TPBK2APPICONID_H |
|
46 |
|
47 // End of File |