extras/converter/Ui/Src/CCnvApplication.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 CCnvApplication.h
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #include "CCnvApplication.h"
       
    22 #include "CCnvDocument.h"
       
    23 
       
    24 TUid CCnvApplication::AppDllUid() const
       
    25 	{
       
    26 	return KUidCnv;
       
    27 	}
       
    28 
       
    29 CApaDocument* CCnvApplication::CreateDocumentL()
       
    30 	{
       
    31 	return CCnvDocument::NewL( *this );
       
    32 	}
       
    33 
       
    34 
       
    35 #include <eikstart.h>
       
    36 
       
    37 LOCAL_C CApaApplication* NewApplication()
       
    38     {
       
    39     return new CCnvApplication;
       
    40     }
       
    41 
       
    42 GLDEF_C TInt E32Main()
       
    43     {
       
    44     return EikStart::RunApplication(NewApplication);
       
    45     }
       
    46 
       
    47 
       
    48 
       
    49 
       
    50 
       
    51 
       
    52 // End of File