|
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: CNcdPreminetProtocolSkin declaration |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_NCDPREMINETPROTOCOLSKINIMPL_H |
|
20 #define M_NCDPREMINETPROTOCOLSKINIMPL_H |
|
21 |
|
22 #include <e32base.h> |
|
23 |
|
24 #include "ncd_pp_skin.h" |
|
25 |
|
26 class CNcdPreminetProtocolSkin : public CBase, |
|
27 public MNcdPreminetProtocolSkin |
|
28 { |
|
29 public: |
|
30 |
|
31 /** |
|
32 * Constructor. |
|
33 * |
|
34 * @return Protocol element icon. |
|
35 */ |
|
36 static CNcdPreminetProtocolSkin* NewL(); |
|
37 |
|
38 /** |
|
39 * Constructor. |
|
40 * |
|
41 * @return Protocol element icon. |
|
42 */ |
|
43 static CNcdPreminetProtocolSkin* NewLC(); |
|
44 |
|
45 /** |
|
46 * Constructor. |
|
47 */ |
|
48 CNcdPreminetProtocolSkin(); |
|
49 |
|
50 /** |
|
51 * Constructor. |
|
52 */ |
|
53 void ConstructL(); |
|
54 |
|
55 /** |
|
56 * Destructor. |
|
57 */ |
|
58 virtual ~CNcdPreminetProtocolSkin(); |
|
59 |
|
60 // From base class MNcdPreminetProtocolSkin |
|
61 |
|
62 /** |
|
63 * @see MNcdPreminetProtocolSkin::Id |
|
64 */ |
|
65 const TDesC& Id() const; |
|
66 |
|
67 /** |
|
68 * @see MNcdPreminetProtocolSkin::Timestamp |
|
69 */ |
|
70 const TDesC& Timestamp() const; |
|
71 |
|
72 /** |
|
73 * @see MNcdPreminetProtocolSkin::Uri |
|
74 */ |
|
75 const TDesC& Uri() const; |
|
76 |
|
77 public: |
|
78 |
|
79 HBufC* iId; |
|
80 HBufC* iTimestamp; |
|
81 HBufC* iUri; |
|
82 |
|
83 }; |
|
84 |
|
85 #endif // M_NCDPREMINETPROTOCOLSKINIMPL_H |