equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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 implementation for CAknSoftNotificationParameters |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef AKN_PRIVATE_SOFT_NOTIFICATION_PARAMETERS |
|
19 #define AKN_PRIVATE_SOFT_NOTIFICATION_PARAMETERS |
|
20 |
|
21 // INCLUDES |
|
22 #include <aknsoftnotificationparameters.h> |
|
23 |
|
24 // CLASS DECLARATION |
|
25 /** |
|
26 * Utility implementation for CAknSoftNotificationParameters |
|
27 * |
|
28 * @lib AknNotifyPlugin.dll |
|
29 * @since 1.2 |
|
30 */ |
|
31 |
|
32 class CAknPrivateSoftNoteParameters: public CAknSoftNotificationParameters |
|
33 { |
|
34 public: |
|
35 /** |
|
36 * Two-phased constructor. |
|
37 */ |
|
38 static CAknPrivateSoftNoteParameters* NewL() |
|
39 { |
|
40 return (new (ELeave) CAknPrivateSoftNoteParameters); |
|
41 }; |
|
42 |
|
43 void InternalizeL( RReadStream& aStream ); |
|
44 void ExternalizeL( RWriteStream& aStream ) const; |
|
45 |
|
46 friend class CAknSoftNotificationPlugin; |
|
47 }; |
|
48 |
|
49 |
|
50 #endif |