wlansecuritysettings/wepsecuritysettingsui/inc/WEPSecuritySettingsImpl.inl
branchRCL_3
changeset 18 bad0cc58d154
parent 17 30e048a7b597
child 19 c74b3d9f6b9e
--- a/wlansecuritysettings/wepsecuritysettingsui/inc/WEPSecuritySettingsImpl.inl	Thu Aug 19 09:58:27 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,148 +0,0 @@
-/*
-* Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of the License "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description: CWEPSecuritySettingsImpl inline functions
-*
-*/
-
-/*
-* %version: tr1cfwln#12 %
-*/
-
-#ifndef WEPSECURITYSETTINGSIMPL_INL
-#define WEPSECURITYSETTINGSIMPL_INL
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::KeyInUse
-// ---------------------------------------------------------
-//
-inline CWEPSecuritySettings::TWEPKeyInUse 
-                                     CWEPSecuritySettingsImpl::KeyInUse() const
-    { 
-    return iKeyInUse; 
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::Authentication
-// ---------------------------------------------------------
-//
-inline CWEPSecuritySettings::TWEPAuthentication 
-                               CWEPSecuritySettingsImpl::Authentication() const
-    { 
-    return iAuthentication; 
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::KeyLength
-// ---------------------------------------------------------
-//
-inline CWEPSecuritySettings::TWEPKeyLength 
-               CWEPSecuritySettingsImpl::KeyLength( const TInt aElement ) const
-    { 
-    return iKeyLength[aElement]; 
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::KeyFormat
-// ---------------------------------------------------------
-//
-inline CWEPSecuritySettings::TWEPKeyFormat 
-               CWEPSecuritySettingsImpl::KeyFormat( const TInt aElement ) const
-    { 
-    return iKeyFormat[aElement]; 
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::KeyData
-// ---------------------------------------------------------
-//
-inline TDes8* CWEPSecuritySettingsImpl::KeyData( const TInt aElement )
-    { 
-    return &iKeyData[aElement]; 
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::SetKeyInUse
-// ---------------------------------------------------------
-//
-inline void CWEPSecuritySettingsImpl::SetKeyInUse( 
-                           const CWEPSecuritySettings::TWEPKeyInUse aKeyInUse )
-    { 
-    iKeyInUse = aKeyInUse; 
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::SetAuthentication
-// ---------------------------------------------------------
-//
-inline void CWEPSecuritySettingsImpl::SetAuthentication( 
-               const CWEPSecuritySettings::TWEPAuthentication aAuthentication )
-    { 
-    iAuthentication = aAuthentication; 
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::SetKeyLength
-// ---------------------------------------------------------
-//
-inline void CWEPSecuritySettingsImpl::SetKeyLength( const TInt aElement, 
-                         const CWEPSecuritySettings::TWEPKeyLength aKeyLength )
-    { 
-    iKeyLength[aElement] = aKeyLength; 
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::SetKeyFormat
-// ---------------------------------------------------------
-//
-inline void CWEPSecuritySettingsImpl::SetKeyFormat( const TInt aElement, 
-                         const CWEPSecuritySettings::TWEPKeyFormat aKeyFormat )
-    { 
-    iKeyFormat[aElement] = aKeyFormat; 
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::SetKeyData
-// ---------------------------------------------------------
-//
-inline void CWEPSecuritySettingsImpl::SetKeyData( const TInt aElement, 
-                                                  const TDesC8& aKeyData )
-    {
-    iKeyData[aElement] = aKeyData;
-    }
-
-
-// ---------------------------------------------------------
-// CWEPSecuritySettingsImpl::WEP256Enabled
-// ---------------------------------------------------------
-//
-inline TBool CWEPSecuritySettingsImpl::WEP256Enabled() const
-    {
-    // WEP256 is deprecated.
-    return EFalse;
-    }
-
-
-#endif 
-
-// End of File