uifw/AvKon/tsrc/bc/S60_SDK3.0/bctestlist/src/bctestListDocument.cpp
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     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:  Avkon listbox test application
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "BCTestListDocument.h"
       
    21 #include "BCTestListAppUi.h"
       
    22 
       
    23 // ================= MEMBER FUNCTIONS =========================================
       
    24 
       
    25 // ----------------------------------------------------------------------------
       
    26 // CBCTestListDocument* CBCTestListDocument::NewL( CEikApplication& )
       
    27 // Symbian two-phased constructor.
       
    28 // ----------------------------------------------------------------------------
       
    29 //
       
    30 CBCTestListDocument* CBCTestListDocument::NewL( CEikApplication& aApp )
       
    31     {
       
    32     CBCTestListDocument* self = new( ELeave ) CBCTestListDocument( aApp );
       
    33     CleanupStack::PushL( self );
       
    34     self->ConstructL();
       
    35     CleanupStack::Pop();
       
    36     return self;
       
    37     }
       
    38 
       
    39 // ----------------------------------------------------------------------------
       
    40 // CBCTestListDocument::~CBCTestListDocument()
       
    41 // Destructor.
       
    42 // ----------------------------------------------------------------------------
       
    43 //
       
    44 CBCTestListDocument::~CBCTestListDocument()
       
    45     {
       
    46     }
       
    47 
       
    48 // ----------------------------------------------------------------------------
       
    49 // CBCTestListDocument::CBCTestListDocument( CEikApplication& )
       
    50 // Overload constructor.
       
    51 // ----------------------------------------------------------------------------
       
    52 //
       
    53 CBCTestListDocument::CBCTestListDocument( CEikApplication& aApp )
       
    54     :   CAknDocument( aApp )
       
    55     {
       
    56     }
       
    57 
       
    58 // ----------------------------------------------------------------------------
       
    59 // void CBCTestListDocument::ConstructL()
       
    60 // Symbian 2nd phase constructor.
       
    61 // ----------------------------------------------------------------------------
       
    62 //
       
    63 void CBCTestListDocument::ConstructL()
       
    64     {
       
    65     }
       
    66 
       
    67 // ----------------------------------------------------------------------------
       
    68 // CEikAppUi* CBCTestListDocument::CreateAppUiL()
       
    69 // Constructs CBCTestListAppUi.
       
    70 // ----------------------------------------------------------------------------
       
    71 //
       
    72 CEikAppUi* CBCTestListDocument::CreateAppUiL()
       
    73     {
       
    74     return new( ELeave ) CBCTestListAppUi;
       
    75     }
       
    76 
       
    77 // End of File