uifw/AknGlobalUI/OldStyleNotif/Inc/aknprivatesoftnotificationparameters.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2002-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 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 #include <aknSDData.h>
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28 *  Utility implementation for CAknSoftNotificationParameters.
       
    29 *
       
    30 *  @lib AknNotifyPlugin.dll
       
    31 *  @since S60 1.2
       
    32 */
       
    33 NONSHARABLE_CLASS(CAknPrivateSoftNoteParameters) : public CAknSoftNotificationParameters
       
    34     {
       
    35 public:
       
    36     /**
       
    37     * Two-phased constructor.
       
    38     */
       
    39     static CAknPrivateSoftNoteParameters* NewL()
       
    40         {
       
    41         return (new (ELeave) CAknPrivateSoftNoteParameters);
       
    42         };
       
    43         
       
    44     /**
       
    45      * Destructor.
       
    46      */
       
    47     ~CAknPrivateSoftNoteParameters()
       
    48         {
       
    49         delete iSecondaryDisplayData;
       
    50         }
       
    51         
       
    52     void InternalizeL( RReadStream& aStream );      
       
    53     void ExternalizeL( RWriteStream& aStream ) const;   
       
    54 
       
    55     friend class CAknSoftNotificationPlugin;
       
    56     friend class CCustomNotifParams;
       
    57     
       
    58 public: // Since S60 3.1
       
    59     CAknSDData* iSecondaryDisplayData;
       
    60     };
       
    61 
       
    62 #endif // AKN_PRIVATE_SOFT_NOTIFICATION_PARAMETERS
       
    63 
       
    64 // End of File