mapnavproviderrefapp/inc/mnrpnavigationservice.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:  CMnrpNavigationService class definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MNRP_NAVIGATIONSERVICE_H
       
    20 #define MNRP_NAVIGATIONSERVICE_H
       
    21 
       
    22 #include "mnnavigationservicebase.h"
       
    23 
       
    24 class CPosLandmark;
       
    25 
       
    26 /** Implementation of Navigation service (KMnAppNavigationService). 
       
    27  */
       
    28 class CMnrpNavigationService : public CMnNavigationServiceBase
       
    29     {
       
    30     public :
       
    31         static CMnrpNavigationService* NewL();
       
    32         
       
    33     protected :
       
    34         CMnrpNavigationService();
       
    35         virtual ~CMnrpNavigationService();
       
    36         void ConstructL();
       
    37 
       
    38     public: // from CMnNavigationServiceBase
       
    39     
       
    40         /** Handles client's request for navigation. */
       
    41         void HandleNavigateToL( const CPosLandmark& aDestination );
       
    42     
       
    43     protected: // from CMnServiceBase
       
    44 
       
    45         /** Empty implementation, as the only request is sychcronous */
       
    46         void DoCancel();
       
    47     };
       
    48 
       
    49 #endif // MNRP_NAVIGATIONSERVICE_H
       
    50 
       
    51