mapnavproviderrefapp/inc/mnrpapplicationback.h
branchRCL_3
changeset 18 870918037e16
parent 0 522cd55cc3d7
equal deleted inserted replaced
17:1fc85118c3ae 18:870918037e16
       
     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:  CMnrpApplicationBack class definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MNRP_APPLICATIONBACK_H
       
    20 #define MNRP_APPLICATIONBACK_H
       
    21 
       
    22 #include <eikapp.h>
       
    23 
       
    24 /**
       
    25  *  An instance of CMnrpApplicationBack is the application part of the Eikon
       
    26  *  application framework for the MnRefGeocoder.
       
    27  *	MnRefGeocoder is a hidden application and works only as geocoder server.
       
    28  *	It accepts geocoding requests from M&N FW, serves them and exits, when 
       
    29  *	all clients are disconnected.
       
    30  */
       
    31 class CMnrpApplicationBack : public CEikApplication
       
    32     {
       
    33     public:  // from CEikApplication
       
    34 
       
    35         /** 
       
    36         * AppDllUid returns the application DLL UID value.
       
    37         *
       
    38         *  @return the UID of this Application/Dll
       
    39         */
       
    40         TUid AppDllUid() const;
       
    41 
       
    42     protected: // from CEikApplication
       
    43 
       
    44         /** 
       
    45         * CreateDocumentL creates a CApaDocument object and return a pointer to it
       
    46         *
       
    47         * @return a pointer to the created document
       
    48         */
       
    49         CApaDocument* CreateDocumentL();
       
    50         
       
    51         void NewAppServerL(CApaAppServer *&aAppServer);
       
    52 
       
    53     };
       
    54 
       
    55 #endif // MNRP_APPLICATIONBACK_H
       
    56