os/mm/mmlibs/mmfw/tsrc/mmvalidationsuite/mmvalidationsuiteapp/src/MVSAppApplication.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Part of the MVS Application for TechView
    15 //
    16 
    17 #include "MVSApp.h"
    18 #include "MVSAppApplication.h"
    19 
    20 
    21 //
    22 //The UID of the application
    23 //
    24 const TUid KUidMVSApp = TUid::Uid(0x102737E8);
    25 
    26 
    27 
    28 
    29 //
    30 //AppDllUid()
    31 //
    32 // Returns the UID of the application.
    33 //
    34 TUid CMVSAppApplication::AppDllUid() const 
    35     {
    36     return KUidMVSApp;
    37     }
    38 
    39 
    40 
    41 //
    42 //CreateDocumentL()           *** This method can LEAVE ***
    43 //
    44 // Create a CAudioDocument object
    45 //
    46 CApaDocument* CMVSAppApplication::CreateDocumentL() 
    47     {
    48     return new(ELeave) CMVSAppDocument(*this);
    49     }
    50 
    51 
    52 //
    53 //