launcher/src/launcherapplication.cpp
branchRCL_3
changeset 21 b3cee849fa46
parent 20 48060abbbeaf
child 22 fad26422216a
equal deleted inserted replaced
20:48060abbbeaf 21:b3cee849fa46
     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 #include "launcherdocument.h"
       
    20 #include "launcherapplication.h"
       
    21 
       
    22 // local constants
       
    23 static const TUid KUidLauncherApp = {0x101FB74F}; 
       
    24 
       
    25 CApaDocument* CLauncherApplication::CreateDocumentL()
       
    26     {  
       
    27     // Create an Launcher document, and return a pointer to it
       
    28     CApaDocument* document = CLauncherDocument::NewL(*this);
       
    29     return document;
       
    30     }
       
    31 
       
    32 TUid CLauncherApplication::AppDllUid() const
       
    33     {
       
    34     // Return the UID for the Launcher application
       
    35     return KUidLauncherApp;
       
    36     }
       
    37