mapnavproviderrefapp/inc/mnrpapplication.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     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 "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:  CMnrpApplication class definition 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MNRP_APPLICATION_H
       
    20 #define MNRP_APPLICATION_H
       
    21 
       
    22 #include <eikapp.h>
       
    23 
       
    24 /**
       
    25  *  An instance of CMnrpApplication is the application part of the Eikon
       
    26  *  application framework for the MnRefProvider.
       
    27  *	MnRefProvider is an Application Server, which implements MapView and Navigation
       
    28  *	services of M&N FW.
       
    29  */
       
    30 class CMnrpApplication : public CEikApplication
       
    31     {
       
    32     public:  // from CEikApplication
       
    33 
       
    34         /** 
       
    35         * AppDllUid returns the application DLL UID value.
       
    36         *
       
    37         *  @return the UID of this Application/Dll
       
    38         */
       
    39         TUid AppDllUid() const;
       
    40 
       
    41     protected: // from CEikApplication
       
    42 
       
    43         /** 
       
    44         * CreateDocumentL creates a CApaDocument object and return a pointer to it
       
    45         *
       
    46         * @return a pointer to the created document
       
    47         */
       
    48         CApaDocument* CreateDocumentL();
       
    49         
       
    50         void NewAppServerL(CApaAppServer *&aAppServer);
       
    51 
       
    52     };
       
    53 
       
    54 #endif // MNRP_APPLICATION_H
       
    55