diff -r 8840d3e38314 -r 7aac0b9e8906 wlansecuritysettings/wapisecuritysettingsui/inc/wapisecuritysettingsimpl.inl --- a/wlansecuritysettings/wapisecuritysettingsui/inc/wapisecuritysettingsimpl.inl Fri Mar 19 09:29:58 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,83 +0,0 @@ -/* -* ============================================================================== -* Name : wapisecuritysettingsimpl.inl -* Part of : WAPI Security Settings UI -* -* Description : CWAPISecuritySettingsImpl inline functions -* Version : %version: 5 % -* -* Copyright (c) 2008 Nokia Corporation. -* This material, including documentation and any related -* computer programs, is protected by copyright controlled by -* Nokia Corporation. All rights are reserved. Copying, -* including reproducing, storing, adapting or translating, any -* or all of this material requires the prior written consent of -* Nokia Corporation. This material also contains confidential -* information which may not be disclosed to others without the -* prior written consent of Nokia Corporation. -* ============================================================================== -*/ - - -#ifndef WAPISECURITYSETTINGSIMPL_INL -#define WAPISECURITYSETTINGSIMPL_INL - -// --------------------------------------------------------- -// CWAPISecuritySettingsImpl::GetUserCertInUse -// --------------------------------------------------------- -// -inline void CWAPISecuritySettingsImpl::GetUserCertInUse( - TInt& aUserCertInUse ) - { - aUserCertInUse = iUserCertInUse; - } - - -// --------------------------------------------------------- -// CWAPISecuritySettingsImpl::GetCACertInUse -// --------------------------------------------------------- -// -inline void CWAPISecuritySettingsImpl::GetCACertInUse( - TInt& aCACertInUse ) - { - aCACertInUse = iCACertInUse; - } - - -// --------------------------------------------------------- -// CWAPISecuritySettingsImpl::SetUserCertInUse -// --------------------------------------------------------- -// -inline void CWAPISecuritySettingsImpl::SetUserCertInUse( - const TInt aSelectedCert ) - { - iUserCertInUse = aSelectedCert; - } - - -// --------------------------------------------------------- -// CWAPISecuritySettingsImpl::SetCACertInUse -// --------------------------------------------------------- -// -inline void CWAPISecuritySettingsImpl::SetCACertInUse( - const TInt aSelectedCert ) - { - iCACertInUse = aSelectedCert; - } - - -// --------------------------------------------------------- -// CWAPISecuritySettingsImpl::GetCertificateLabels -// --------------------------------------------------------- -// -inline void CWAPISecuritySettingsImpl::GetCertificateLabels( - RArray >*& aUserCertificates, - RArray >*& aCACertificates ) - { - aUserCertificates = iUserCertificates; - aCACertificates = iCACertificates; - } - -#endif - -// End of File