locationsystemui/locationsysui/locpossettingsapp/src/locpossettingsapp.cpp
branchRCL_3
changeset 10 d6e4203b7ebe
parent 9 e000e7e1f1b1
child 12 5944cae565c9
equal deleted inserted replaced
9:e000e7e1f1b1 10:d6e4203b7ebe
     1 /*
       
     2 * Copyright (c) 2006-2007 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:  Application to launch Positioning Settings for Location Centre
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // System Includes
       
    20 #include <eikstart.h>
       
    21 
       
    22 // User Includes
       
    23 #include "locpossettingsapp.h"
       
    24 #include "locpossettingsappdocument.h"
       
    25 #include "locpossettingsuid.hrh"
       
    26 
       
    27 // ======== Member functions for class  CLocPosSettingsApp ===================
       
    28 
       
    29 // ---------------------------------------------------------------------------
       
    30 // TUid CLocPosSettingsApp::AppDllUid
       
    31 // ---------------------------------------------------------------------------
       
    32 //
       
    33 TUid CLocPosSettingsApp::AppDllUid() const
       
    34     {
       
    35     return TUid::Uid( KCLocPosSettingsAppUid3 );
       
    36     }
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // CApaDocument* CLocPosSettingsApp::CreateDocumentL
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 CApaDocument* CLocPosSettingsApp::CreateDocumentL()
       
    43     {
       
    44     return CLocPosSettingsAppDocument::NewL( *this );
       
    45     }
       
    46     
       
    47 // =========================Global Functions =================================
       
    48 
       
    49 // ---------------------------------------------------------------------------
       
    50 // CApaApplication* NewApplication
       
    51 // ---------------------------------------------------------------------------
       
    52 //
       
    53 LOCAL_C CApaApplication* NewApplication()
       
    54     {
       
    55     return new CLocPosSettingsApp ;
       
    56     }
       
    57 
       
    58 
       
    59 // ---------------------------------------------------------------------------
       
    60 // TInt E32Main
       
    61 // ---------------------------------------------------------------------------
       
    62 //
       
    63 GLDEF_C TInt E32Main()
       
    64     {
       
    65     return EikStart::RunApplication( NewApplication );
       
    66     }
       
    67