equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: MNcdPreminetProtocolIcon declaration |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_NCDPREMINETPROTOCOLICON_H |
|
20 #define M_NCDPREMINETPROTOCOLICON_H |
|
21 |
|
22 class MNcdPreminetProtocolIcon |
|
23 { |
|
24 public: |
|
25 |
|
26 /** |
|
27 * Destructor. |
|
28 */ |
|
29 virtual ~MNcdPreminetProtocolIcon() {} |
|
30 |
|
31 /** |
|
32 * Get icon ID. |
|
33 * @return ID of the icon. |
|
34 */ |
|
35 virtual const TDesC& Id() const = 0; |
|
36 |
|
37 /** |
|
38 * Get icon Data Block. |
|
39 * @return Data Block of the icon. |
|
40 */ |
|
41 virtual const TDesC& DataBlock() const = 0; |
|
42 |
|
43 /** |
|
44 * Get icon URI. |
|
45 * @return URI of the icon. |
|
46 */ |
|
47 virtual const TDesC& Uri() const = 0; |
|
48 |
|
49 /** |
|
50 * Get icon data (if received as inline data). |
|
51 * @return Data of the icon or KNullDesC8 |
|
52 */ |
|
53 virtual const TDesC8& Data() const = 0; |
|
54 |
|
55 }; |
|
56 |
|
57 #endif // M_NCDPREMINETPROTOCOLICON_H |