networkcontrol/ipcprshim/src/shimconnsettings.cpp
branchRCL_3
changeset 21 abbed5a4b42a
equal deleted inserted replaced
20:7e41d162e158 21:abbed5a4b42a
       
     1 // Copyright (c) 2004-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  @file SS_CONNSETTINGS.CPP
       
    18 */
       
    19 
       
    20 #include "shimconnsettings.h"
       
    21 #include "es_prot.h"
       
    22 
       
    23 void CConnectionSettingsShim::DoGetBoolSettingL(const TDesC& aSettingName, TBool& aValue, const RMessagePtr2* aMessage )
       
    24 	{
       
    25 	iConnectionProvdBase.DoGetBoolSettingL( aSettingName, aValue, aMessage );
       
    26 	}
       
    27 	
       
    28 void CConnectionSettingsShim::DoGetDes16SettingL(const TDesC& aSettingName, TDes16& aValue, const RMessagePtr2* aMessage )
       
    29 	{
       
    30 	iConnectionProvdBase.DoGetDes16SettingL( aSettingName, aValue, aMessage );
       
    31 	}
       
    32 	
       
    33 void CConnectionSettingsShim::DoGetDes8SettingL(const TDesC& aSettingName, TDes8& aValue, const RMessagePtr2* aMessage )
       
    34 	{
       
    35 	iConnectionProvdBase.DoGetDes8SettingL( aSettingName, aValue, aMessage );
       
    36 	}
       
    37 	
       
    38 void CConnectionSettingsShim::DoGetIntSettingL(const TDesC& aSettingName, TUint32& aValue, const RMessagePtr2* aMessage )
       
    39 	{
       
    40 	iConnectionProvdBase.DoGetIntSettingL( aSettingName, aValue, aMessage );
       
    41 	}
       
    42 	
       
    43 HBufC* CConnectionSettingsShim::DoGetLongDesSettingLC(const TDesC& aSettingName, const RMessagePtr2* aMessage )
       
    44 	{
       
    45 	return iConnectionProvdBase.DoGetLongDesSettingLC( aSettingName, aMessage );
       
    46 	}