wlanutilities/wlanqtutilities/wrapper/src/wlanqtutilsscan.cpp
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
--- a/wlanutilities/wlanqtutilities/wrapper/src/wlanqtutilsscan.cpp	Tue Aug 31 16:18:40 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,103 +0,0 @@
-/*
-* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "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: 
-* WLAN scan platform specific implementation wrapper.
-*/
-
-// System includes
-
-// User includes
-
-#include "wlanqtutilsscaniap_symbian.h"
-#include "wlanqtutilsscanap_symbian.h"
-#include "wlanqtutilsscan.h"
-
-/*!
-    \class WlanQtUtilsScan
-    \brief WLAN scan platform specific implementation wrapper.
-
-    This class implements the WLAN scanning functionality platform independently.
-    The private implementation class implements the platform specific parts. 
-*/
-
-// External function prototypes
-
-// Local constants
-
-// ======== LOCAL FUNCTIONS ========
-
-// ======== MEMBER FUNCTIONS ========
-
-/*!
-    Constructor.
-    
-    @param [in] parent Parent object.
-*/
-
-WlanQtUtilsScan::WlanQtUtilsScan(QObject *parent) :
-    QObject(parent)
-{
-    QT_TRAP_THROWING(
-        d_ptrIap = WlanQtUtilsScanIapPrivate::NewL(this);
-        d_ptrAp = WlanQtUtilsScanApPrivate::NewL(this));
-}
-
-/*!
-    Destructor.
-*/
-
-WlanQtUtilsScan::~WlanQtUtilsScan()
-{
-    delete d_ptrIap;
-    delete d_ptrAp;
-}
-
-/*!
-    Scans available WLAN IAP's, including hidden ones.
-*/
-
-void WlanQtUtilsScan::scanWlanIaps()
-{
-    d_ptrIap->ScanIaps();
-}
-
-/*!
-    Scans available WLAN AP's (i.e. broadcast scan).
-*/
-
-void WlanQtUtilsScan::scanWlanAps()
-{
-    d_ptrAp->Scan();
-}
-
-/*!
-    Scans with given WLAN SSID (i.e. direct scan).
-    
-    @param [in] ssid WLAN SSID to scan.
-*/
-
-void WlanQtUtilsScan::scanWlanDirect(const QString &ssid)
-{
-    d_ptrAp->Scan(ssid);
-}
-
-/*!
-    Stops current scan. Can also be called if there is no scan in progres.
-*/
-
-void WlanQtUtilsScan::stopScan()
-{
-    d_ptrIap->StopScan();
-    d_ptrAp->StopScan();
-}