locationrequestmgmt/locationserver/LbsQualityProfileApi/inc/lbsqualityprofileapi.inl
changeset 0 9cfd9a3ee49c
equal deleted inserted replaced
-1:000000000000 0:9cfd9a3ee49c
       
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  Gets one of the settings defined by the CLbsQualityProfileApi class.
       
    18  @param aProfileId The identity of the quality profile.
       
    19  @param aSetting The setting to be retrieved.
       
    20  @param aValue   The value of the setting.
       
    21  @return KErrNone if successful, one of the system wide error codes otherwise.
       
    22  @see TLbsQualityProfileApiSetting
       
    23  @publishedPartner
       
    24  @released
       
    25 */
       
    26 template <typename T>
       
    27 	inline TInt CLbsQualityProfileApi::Get(	const TLbsQualityProfileId& aProfileId, 
       
    28 											const TLbsQualityProfileApiSetting& aSetting, 
       
    29 											T& aValue) const
       
    30 		{
       
    31 		return DoGet(aProfileId, aSetting, aValue);		
       
    32 		}