locationmgmt/locmonitor/ConversionApi/ConversionPluginApi/src/lbslocinfoconverterplugincommon.cpp
branchGeoConversion
changeset 34 0c0ad64c882c
parent 16 90477588756a
equal deleted inserted replaced
16:90477588756a 34:0c0ad64c882c
     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: Implentation of functions shared between all 
       
    15 * implementations of the LBS Network Protocol Module 
       
    16 * interface/ECom plugin.
       
    17 *
       
    18 */
       
    19 
       
    20 #include <e32base.h>
       
    21 #include <lbs/lbslocinfoconverterplugincommon.h>
       
    22 
       
    23 
       
    24 // ---------------------------------------------------------------------------
       
    25 // TLbsLocInfoConverterPluginClassTypeBase::TLbsLocInfoConverterPluginClassTypeBase()
       
    26 // Default constructor for TLbsLocInfoConverterPluginClassTypeBase
       
    27 // ---------------------------------------------------------------------------
       
    28 //
       
    29 EXPORT_C TLbsLocInfoConverterPluginClassTypeBase::TLbsLocInfoConverterPluginClassTypeBase()
       
    30 :   iClassType(0),
       
    31     iClassSize(0)
       
    32     {
       
    33     }
       
    34 
       
    35 // ---------------------------------------------------------------------------
       
    36 // TLbsLocInfoConverterPluginClassTypeBase::ClassSize()
       
    37 // Returns the size of the TLbsLocInfoConverterPluginClassTypeBase-derived class
       
    38 // ---------------------------------------------------------------------------
       
    39 //
       
    40 EXPORT_C TUint TLbsLocInfoConverterPluginClassTypeBase::ClassSize() const
       
    41     {
       
    42     return iClassSize;
       
    43     }
       
    44 
       
    45 // ---------------------------------------------------------------------------
       
    46 // TLbsLocInfoConverterPluginClassTypeBase::ClassType()
       
    47 // Returns the type of the TLbsLocInfoConverterPluginClassTypeBase-derived class
       
    48 // ---------------------------------------------------------------------------
       
    49 //
       
    50 EXPORT_C TUint32 TLbsLocInfoConverterPluginClassTypeBase::ClassType() const
       
    51     {
       
    52     return iClassType;
       
    53     }