memana/analyzetoolclient/configurationappgui/src/atconfigurationappguiapplication.cpp
changeset 0 f0f2b8682603
equal deleted inserted replaced
-1:000000000000 0:f0f2b8682603
       
     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 #include "atconfigurationappguiapplication.h"
       
    19 #include "atconfigurationappguidocument.h"
       
    20 #include "atlog.h"
       
    21 #include <eikstart.h>
       
    22 
       
    23 // -----------------------------------------------------------------------------
       
    24 // CATConfigurationAppGuiApplication::AppDllUid()
       
    25 // Returns UID for this application (KUidATConfigurationAppGuiApplication)
       
    26 // -----------------------------------------------------------------------------
       
    27 //
       
    28 TUid CATConfigurationAppGuiApplication::AppDllUid() const
       
    29     {
       
    30     LOGSTR1( "ATCU CATConfigurationAppGuiApplication::AppDllUid()" );
       
    31     
       
    32     return KUidATConfigurationAppGuiApplication;
       
    33     }
       
    34 
       
    35 // -----------------------------------------------------------------------------
       
    36 // CATConfigurationAppGuiApplication::CreateDocumentL()
       
    37 // Returns Pointer to the created document object (CATConfigurationAppGuiDocument)
       
    38 // -----------------------------------------------------------------------------
       
    39 //
       
    40 CApaDocument* CATConfigurationAppGuiApplication::CreateDocumentL()
       
    41     {
       
    42     LOGSTR1( "ATCU CATConfigurationAppGuiApplication::CreateDocumentL()" );
       
    43     
       
    44     return CATConfigurationAppGuiDocument::NewL( *this );
       
    45     }
       
    46 
       
    47 // -----------------------------------------------------------------------------
       
    48 // CATConfigurationAppGuiApplication::NewApplication()
       
    49 // Returns The application (CATConfigurationAppGuiApplication)
       
    50 // -----------------------------------------------------------------------------
       
    51 //
       
    52 LOCAL_C CApaApplication* NewApplication()
       
    53     {
       
    54     LOGSTR1( "ATCU CATConfigurationAppGuiApplication::NewApplication()" );
       
    55     
       
    56     return new CATConfigurationAppGuiApplication;
       
    57     }
       
    58 
       
    59 // -----------------------------------------------------------------------------
       
    60 // GLDEF_C TInt E32Main()
       
    61 // This standard export is the entry point for all Series 60 applications.
       
    62 // Returns error code
       
    63 // -----------------------------------------------------------------------------
       
    64 //
       
    65 GLDEF_C TInt E32Main()
       
    66     {
       
    67     LOGSTR1( "ATCU CATConfigurationAppGuiApplication::E32Main()" );
       
    68     
       
    69     return EikStart::RunApplication( NewApplication );
       
    70     }
       
    71 
       
    72 // -----------------------------------------------------------------------------
       
    73 // CATConfigurationAppGuiApplication::OpenIniFileLC()
       
    74 // To support .ini files for storing application settings
       
    75 // -----------------------------------------------------------------------------
       
    76 //
       
    77 /*CDictionaryStore* CATConfigurationAppGuiApplication::OpenIniFileLC( RFs& aFs ) const
       
    78     {
       
    79     return CEikApplication::OpenIniFileLC( aFs );
       
    80     }*/
       
    81 
       
    82 // End of File
       
    83