locationmanager/geotagger/src/cgeotagger.cpp
branchRCL_3
changeset 19 b73252188534
equal deleted inserted replaced
18:63c982fb92f2 19:b73252188534
       
     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:  A class responsible for geotagging of media files in background.
       
    15 *
       
    16 */
       
    17 
       
    18 #include <geotagger.h>
       
    19 #include "cinternalgeotagger.h"
       
    20 #include "locationmanagerdebug.h"
       
    21 
       
    22 
       
    23 // --------------------------------------------------------------------------
       
    24 // CGeoTagger::NewL
       
    25 // --------------------------------------------------------------------------
       
    26 //
       
    27 EXPORT_C CGeoTagger* CGeoTagger::NewL( MGeoTaggerObserver* aObserver,
       
    28         CMdESession* aMdeSession)
       
    29     {
       
    30     LOG("CGeoTagger::NewL, begin");
       
    31     CInternalGeoTagger* self = CInternalGeoTagger::NewL( aMdeSession, aObserver );
       
    32     
       
    33     return self;
       
    34     }
       
    35         
       
    36 
       
    37 
       
    38 // End of file