classicui_pub/notes_api/tsrc/src/testsdknotesprogressinfo.cpp
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:  Test EIKINFO.H 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 //  INCLUDES
       
    20 #include "testsdknotesprogressinfo.h"
       
    21 
       
    22 // ============================ MEMBER FUNCTIONS ===============================
       
    23 // -----------------------------------------------------------------------------
       
    24 // CTestSDKNotesProgressInfo::NewLC
       
    25 // -----------------------------------------------------------------------------
       
    26 CTestSDKNotesProgressInfo* CTestSDKNotesProgressInfo::NewLC( const SInfo& aProgInfo )
       
    27     {
       
    28     CTestSDKNotesProgressInfo* self =new (ELeave) CTestSDKNotesProgressInfo( aProgInfo );
       
    29     CleanupStack::PushL( self );
       
    30     self->ConstructL();
       
    31     return self;
       
    32     }
       
    33 
       
    34 // -----------------------------------------------------------------------------
       
    35 // CTestSDKNotesProgressInfo::~CTestSDKNotesProgressInfo
       
    36 // -----------------------------------------------------------------------------
       
    37 CTestSDKNotesProgressInfo::~CTestSDKNotesProgressInfo()
       
    38     {
       
    39     
       
    40     }
       
    41 
       
    42 // -----------------------------------------------------------------------------
       
    43 // CTestSDKNotesProgressInfo::EvaluateText
       
    44 // -----------------------------------------------------------------------------
       
    45 const TDesC* CTestSDKNotesProgressInfo::EvaluateText( TDes& aTextBuf ) const
       
    46     {
       
    47     return CEikProgressInfo::EvaluateText( aTextBuf );
       
    48     }
       
    49 
       
    50 // -----------------------------------------------------------------------------
       
    51 // CTestSDKNotesProgressInfo::ConstructL
       
    52 // -----------------------------------------------------------------------------
       
    53 void CTestSDKNotesProgressInfo::ConstructL()
       
    54     {
       
    55     CEikProgressInfo::ConstructL();
       
    56     }
       
    57 
       
    58 // -----------------------------------------------------------------------------
       
    59 // CTestSDKNotesProgressInfo::CTestSDKNotesControl
       
    60 // -----------------------------------------------------------------------------
       
    61 CTestSDKNotesProgressInfo::CTestSDKNotesProgressInfo( const SInfo& aProgInfo ):CEikProgressInfo( aProgInfo )
       
    62     {
       
    63     
       
    64     }
       
    65 
       
    66 // -----------------------------------------------------------------------------
       
    67 // CTestSDKNotesProgressInfo::WriteInternalStateL
       
    68 // -----------------------------------------------------------------------------
       
    69 void CTestSDKNotesProgressInfo::WriteInternalStateL( RWriteStream& aWriteStream ) const
       
    70     {
       
    71     CEikProgressInfo::WriteInternalStateL( aWriteStream );
       
    72     }