extras/converter/Ui/Src/CCnvDocument.cpp
branchRCL_3
changeset 12 2d0f9ab0ba18
parent 10 ddecbce3dc1f
child 13 82ca176301de
equal deleted inserted replaced
10:ddecbce3dc1f 12:2d0f9ab0ba18
     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:  
       
    15 *      This is the implementation of the class defined in CCnvDocument.h
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #include "CCnvAppUi.h"
       
    22 #include "CCnvDocument.h"
       
    23 
       
    24 CCnvDocument::CCnvDocument( CAknApplication& aApp )
       
    25 : CAknDocument( aApp )
       
    26 	{
       
    27 	}
       
    28 
       
    29 CCnvDocument* CCnvDocument::NewL( CAknApplication& aApp )
       
    30 	{
       
    31 	return new( ELeave ) CCnvDocument( aApp );
       
    32 	}
       
    33 
       
    34 CCnvDocument::~CCnvDocument()
       
    35 	{
       
    36 	}
       
    37 
       
    38 CEikAppUi* CCnvDocument::CreateAppUiL()
       
    39 	{
       
    40 	return new( ELeave ) CCnvAppUi;
       
    41 	}