browserui/videoservices/src/VideoServicesApp.cpp
changeset 51 48e827313edd
parent 37 481242ead638
child 53 f427d27b98d8
equal deleted inserted replaced
37:481242ead638 51:48e827313edd
     1 /*
       
     2 * Copyright (c) 2006 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 the License "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:  CVideoServicesApp Implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include    "VideoServicesApp.h"
       
    21 #include    "VideoServicesDocument.h"
       
    22 
       
    23 // ================= MEMBER FUNCTIONS =======================
       
    24 
       
    25 #include <eikstart.h>
       
    26 
       
    27 LOCAL_C CApaApplication* NewApplication()
       
    28 	{
       
    29 	return new CVideoServicesApp;
       
    30 	}
       
    31 	
       
    32 GLDEF_C TInt E32Main()
       
    33 	{
       
    34 	return EikStart::RunApplication( NewApplication );
       
    35 	}
       
    36 
       
    37 
       
    38 // ---------------------------------------------------------
       
    39 // CVideoServicesApp::AppDllUid()
       
    40 // Returns application UID
       
    41 // ---------------------------------------------------------
       
    42 //
       
    43 TUid CVideoServicesApp::AppDllUid() const
       
    44     {
       
    45     return KUidVideoServices;
       
    46     }
       
    47 
       
    48    
       
    49 // ---------------------------------------------------------
       
    50 // CVideoServicesApp::CreateDocumentL()
       
    51 // Creates CVideoServicesDocument object
       
    52 // ---------------------------------------------------------
       
    53 //
       
    54 CApaDocument* CVideoServicesApp::CreateDocumentL()
       
    55     {
       
    56     return CVideoServicesDocument::NewL( *this );
       
    57     }
       
    58 // End of File  
       
    59