wlanutilities/wlanqtutilities/tsrc/stubs/stub_ictswlanlogininterface.cpp
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
equal deleted inserted replaced
24:63be7eb3fc78 25:f28ada11abbf
     1 /*
       
     2 * Copyright (c) 2010 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 * ICTS Wlan Login Interface stubbing for WLAN Qt Utilities.
       
    16 */
       
    17 
       
    18 #include "ictswlanlogininterface.h"
       
    19 
       
    20 #include "wlanqtutilstestcontext.h"
       
    21 
       
    22 extern WlanQtUtilsTestContext testContext;
       
    23 
       
    24 /*!
       
    25     Constructor.
       
    26 */
       
    27 IctsWlanLoginInterface::IctsWlanLoginInterface(QObject *parent)
       
    28 {
       
    29     Q_UNUSED(parent);
       
    30 }
       
    31 
       
    32 /*!
       
    33     Destructor.
       
    34 */
       
    35 IctsWlanLoginInterface::~IctsWlanLoginInterface()
       
    36 { 
       
    37 }
       
    38 
       
    39 /*!
       
    40     Function for launching Wlan login application.
       
    41     
       
    42     @param [in] iapId Internet accesspoint id to be tested
       
    43     @param [in] netId network identifier of the connection to be used
       
    44 */
       
    45 void IctsWlanLoginInterface::start(int iapId, int netId)
       
    46 {    
       
    47     Q_UNUSED(iapId);
       
    48     Q_UNUSED(netId);
       
    49 }
       
    50 
       
    51 /*!
       
    52     Function for stopping launched Wlan login application.
       
    53 */
       
    54 void IctsWlanLoginInterface::stop()
       
    55 { 
       
    56 }