locationmanager/ReverseGeocode/src/reversegeocode.cpp
branchRCL_3
changeset 19 b73252188534
equal deleted inserted replaced
18:63c982fb92f2 19:b73252188534
       
     1 /*
       
     2 * Copyright (c) 2006-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: Implementation of exported interface class of reverse geo-code 
       
    15 */
       
    16 
       
    17 #include "reversegeocode.h"
       
    18 #include "internalreversegeocode.h"
       
    19 #include "locationmanagerdebug.h"
       
    20 
       
    21 // --------------------------------------------------------------------------
       
    22 // CReverseGeocode::NewL()
       
    23 // factory class to create the instance
       
    24 // --------------------------------------------------------------------------
       
    25 
       
    26 EXPORT_C CReverseGeocode* CReverseGeocode::NewL( MReverseGeocodeObserver& aObserver )
       
    27     {
       
    28         LOG("CReverseGeocode::NewL ,begin");
       
    29         CInternalReverseGeocode *self = CInternalReverseGeocode::NewL( aObserver );
       
    30     
       
    31         return self;
       
    32     }
       
    33 
       
    34 //End of file