wlansecuritysettings/wepsecuritysettingsui/src/WEPSecuritySettingsUI.cpp
branchRCL_3
changeset 46 c74b3d9f6b9e
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
       
     1 /*
       
     2 * Copyright (c) 2001-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 the License "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: Implementation of class CWEPSecuritySettingsUi.  
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: tr1cfwln#10 %
       
    20 */
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include <WEPSecuritySettingsUI.h>
       
    24 
       
    25 #include "WEPSecuritySettingsUiImpl.h"
       
    26 
       
    27 
       
    28 
       
    29 // ================= MEMBER FUNCTIONS =======================
       
    30 
       
    31 // ---------------------------------------------------------
       
    32 // CWEPSecuritySettingsUi::NewLC
       
    33 // ---------------------------------------------------------
       
    34 //
       
    35 EXPORT_C CWEPSecuritySettingsUi* CWEPSecuritySettingsUi::NewL( 
       
    36                                                         CEikonEnv& aEikEnv )
       
    37     {
       
    38     CWEPSecuritySettingsUi* secSett = new( ELeave ) CWEPSecuritySettingsUi();
       
    39     CleanupStack::PushL( secSett );
       
    40     secSett->iImpl = CWEPSecuritySettingsUiImpl::NewL( aEikEnv );
       
    41     CleanupStack::Pop( secSett ); // secSett
       
    42     return secSett;
       
    43     }
       
    44 
       
    45 
       
    46 
       
    47 // ---------------------------------------------------------
       
    48 // CWEPSecuritySettingsUi::~CWEPSecuritySettingsUi
       
    49 // ---------------------------------------------------------
       
    50 //
       
    51 EXPORT_C CWEPSecuritySettingsUi::~CWEPSecuritySettingsUi()
       
    52     {
       
    53     delete iImpl;
       
    54     }
       
    55 
       
    56 
       
    57 
       
    58 // ---------------------------------------------------------
       
    59 // CWEPSecuritySettingsUi::Cvt()
       
    60 // ---------------------------------------------------------
       
    61 //
       
    62 EXPORT_C TInt CWEPSecuritySettingsUi::Cvt()
       
    63     {
       
    64     return KErrNone;
       
    65     }
       
    66 
       
    67 
       
    68 // End of File