wlanutilities/wlanwizard/tsrc/stubs/wlanmgmtclient_context.h
branchRCL_3
changeset 24 63be7eb3fc78
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
       
     1 /*
       
     2 * Copyright (c) 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 "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:
       
    15 */
       
    16 
       
    17 #ifndef WLANMGMTCLIENT_CONTEXT_H
       
    18 #define WLANMGMTCLIENT_CONTEXT_H
       
    19 
       
    20 #include "wlanmgmtclient.h"
       
    21 
       
    22 class WlanMgmtClientContext
       
    23 {
       
    24 public:
       
    25     WlanMgmtClientContext();
       
    26     ~WlanMgmtClientContext();
       
    27 
       
    28     void setObject(CWlanMgmtClient *eapQtConfig);
       
    29 public:
       
    30     
       
    31     void setRunProtectedSetup(const QString &ssid, int completionCode);
       
    32     void appendResult(
       
    33         const QString &ssid,
       
    34         int securityMode,
       
    35         int operatingMode,
       
    36         int defaultWepKeyIndex,
       
    37         const QString &wepKey1 = QString(),
       
    38         const QString &wepKey2 = QString(),
       
    39         const QString &wepKey3 = QString(),
       
    40         const QString &wepKey4 = QString(),
       
    41         const QString &wpaKey  = QString());
       
    42     
       
    43 private:
       
    44     CWlanMgmtClient* mWlanMgmtClient;
       
    45     
       
    46 };
       
    47 
       
    48 #endif /* WLANMGMTCLIENT_CONTEXT_H */
       
    49 
       
    50 // End of File