diff -r d9ec2b8c6bad -r 2fbd1d709fe7 wlanutilities/wlanqtutilities/wrapper/inc/wlanqtutilsconmonwrapperscan_s60_p.h --- a/wlanutilities/wlanqtutilities/wrapper/inc/wlanqtutilsconmonwrapperscan_s60_p.h Wed Jun 23 19:25:42 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,96 +0,0 @@ -/* -* Copyright (c) 2009-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: -* Private implementation of wrapper for Symbian Connection Monitor -* library's scan interface. -*/ - -#ifndef WLANQTUTILSCONMONWRAPPERSCAN_S60_P_H -#define WLANQTUTILSCONMONWRAPPERSCAN_S60_P_H - -// System includes - -#include -#include - -// User includes - -// Forward declarations - -class WlanQtUtilsAp; -class WlanQtUtilsConMonWrapper; - -// External data types - -// Constants - -// Class declaration - -class WlanQtUtilsConMonWrapperScan : public CActive -{ -public: - - // Data types - - WlanQtUtilsConMonWrapperScan(WlanQtUtilsConMonWrapper *wrapper); - - ~WlanQtUtilsConMonWrapperScan(); - - void ScanAvailableWlanAPs(); - - void StopScan(); - -protected: - -private: - - void DoCancel(); - - void RunL(); - - void StoreConMonSecMode( - QSharedPointer ap, - TUint conMonSecMode); - - void StoreConMonConnMode( - QSharedPointer ap, - TInt conMonConnMode); - -private: // data - - // Owned data - - RConnectionMonitor iMonitor; //!< Handle to Connection Monitor Server - - //! Scan package used with Connection Monitor Server scan request - CConnMonWlanNetworksPtrArrayPckg* iWlanBuf; - - //! wlan pointer used with Connection Monitor Server scan request - TPtr iWlanPtr; - - /*! - Has scanning been cancelled by client, are we allowed to report - results? - */ - TBool iScanCancelled; - - // Not owned data - - //! Public implementation to report progress to - WlanQtUtilsConMonWrapper *q_ptr; - - // Friend classes -}; - -#endif // WLANQTUTILSCONMONWRAPPERSCAN_S60_P_H