locsrv_plat/map_image_api/tsrc/testprovider/inc/testprovidercoordconverter.h
branchRCL_3
changeset 44 2b4ea9893b66
parent 42 02ba3f1733c6
child 45 6b6920c56e2f
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
     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: Co ordinate converter for map and navigation test provider
       
    15 *
       
    16 */
       
    17 #ifndef MNTP_COORDINATECONVERTER_H
       
    18 #define MNTP_COORDINATECONVERTER_H
       
    19 
       
    20 #include <mncoordinateconverterbase.h>
       
    21 
       
    22 class CTestProviderCoordConverter : public CMnCoordinateConverterBase
       
    23     {
       
    24     public:
       
    25         static CTestProviderCoordConverter* NewL();
       
    26 
       
    27         ~CTestProviderCoordConverter();
       
    28 
       
    29     protected: // From CMnCoordinateConverterBase
       
    30 
       
    31         TInt GetImageCoordinate( 
       
    32             const TCoordinate& aWorldCoordinate, 
       
    33             TPoint& aImagePoint );
       
    34         
       
    35         TInt GetWorldCoordinate( 
       
    36             const TPoint& aImagePoint, 
       
    37             TCoordinate& aWorldCoordinate );
       
    38                     
       
    39     protected:    
       
    40         CTestProviderCoordConverter();
       
    41         
       
    42     private:
       
    43     };
       
    44 
       
    45 #endif /*MNTP_COORDINATECONVERTER_H*/