phoneuis/vmbx/src/VmDocument.cpp
branchRCL_3
changeset 25 5266b1f337bd
parent 0 5f000ab63145
equal deleted inserted replaced
24:41a7f70b3818 25:5266b1f337bd
       
     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:  Document for Voice mailbox application.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "VmDocument.h"
       
    21 #include "VmAppUi.h"
       
    22 
       
    23 // ================= MEMBER FUNCTIONS =======================
       
    24 
       
    25 // -----------------------------------------------------------------------------
       
    26 // CVmDocument::~CVmDocument
       
    27 // Destructor
       
    28 // -----------------------------------------------------------------------------
       
    29 //
       
    30 CVmDocument::~CVmDocument()
       
    31     {
       
    32     }
       
    33 
       
    34 // ----------------------------------------------------------------------------
       
    35 // CVmDocument::NewL
       
    36 // Two-phased constructor.
       
    37 // -----------------------------------------------------------------------------    
       
    38 //
       
    39 CVmDocument* CVmDocument::NewL( CEikApplication& aApp )  // CVmApp reference
       
    40     {
       
    41     return new(ELeave) CVmDocument( aApp );
       
    42     }
       
    43  
       
    44 
       
    45 // -----------------------------------------------------------------------------
       
    46 // CVmDocument::CreateAppUiL
       
    47 // constructs CVmAppUi
       
    48 // -----------------------------------------------------------------------------
       
    49 //
       
    50 CEikAppUi* CVmDocument::CreateAppUiL()
       
    51     {
       
    52     return new(ELeave) CVmAppUi;
       
    53     }
       
    54 
       
    55 // End of File