extras/about/src/AboutDocument.cpp
branchRCL_3
changeset 24 10c6e6d6e4d9
parent 0 3ee3dfdd8d69
equal deleted inserted replaced
23:41b775cdc0c8 24:10c6e6d6e4d9
       
     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:  Application Document.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "AboutDocument.h"
       
    21 #include "AboutAppUi.h"
       
    22 
       
    23 // ================= MEMBER FUNCTIONS =======================
       
    24 
       
    25 // constructor
       
    26 CAboutDocument::CAboutDocument( CEikApplication& aApp ) : CAknDocument( aApp )
       
    27     {
       
    28     }
       
    29 
       
    30 // destructor
       
    31 CAboutDocument::~CAboutDocument()
       
    32     {
       
    33     }
       
    34 
       
    35 // Two-phased constructor.
       
    36 CAboutDocument* CAboutDocument::NewL( CEikApplication& aApp )
       
    37     {
       
    38     return new( ELeave ) CAboutDocument( aApp );
       
    39     }
       
    40     
       
    41 // -----------------------------------------------------------------------------
       
    42 // CAboutDocument::CreateAppUiL()
       
    43 // constructs CAboutAppUi
       
    44 // -----------------------------------------------------------------------------
       
    45 //
       
    46 CEikAppUi* CAboutDocument::CreateAppUiL()
       
    47     {
       
    48     return new( ELeave ) CAboutAppUi;
       
    49     }
       
    50 
       
    51 // End of File