multimediacommsengine/tsrc/MCETestUI/src/CMCETestUIApp.cpp
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2009 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 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #include "CMCETestUIApp.h"
       
    22 #include "CMCETestUIDoc.h"
       
    23 #include <aknapp.h>
       
    24 
       
    25 
       
    26 //             The function is called by the UI framework to ask for the
       
    27 //             application's UID. The returned value is defined by the
       
    28 //             constant KUidMCEtestui and must match the second value
       
    29 //             defined in the project definition file.
       
    30 // 
       
    31 TUid CMCETestUIApp::AppDllUid() const
       
    32 	{
       
    33 	return KUidMCETestUI;
       
    34 	}
       
    35 
       
    36 //             This function is called by the UI framework at
       
    37 //             application start-up. It creates an instance of the
       
    38 //             document class.
       
    39 //
       
    40 CApaDocument* CMCETestUIApp::CreateDocumentL()
       
    41 	{
       
    42 	return CMCETestUIDoc::NewL( *this );
       
    43 	}