wlanutilities/wlanqtutilities/wrapper/inc/wlanqtutilsconntestwrapper.h
branchGCC_SURGE
changeset 47 b3d8f88532b7
parent 34 30a5f517c615
parent 46 2fbd1d709fe7
--- a/wlanutilities/wlanqtutilities/wrapper/inc/wlanqtutilsconntestwrapper.h	Fri Jun 11 16:27:29 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,93 +0,0 @@
-/*
-* Copyright (c) 2009 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:
-*
-*/
-
-#ifndef WLANQTUTILSCONNTESTWRAPPER_H_
-#define WLANQTUTILSCONNTESTWRAPPER_H_
-
-#include <QObject>
-
-QT_BEGIN_HEADER
-
-QT_BEGIN_NAMESPACE
-
-class ConnTestWrapperPrivate;
-
-/**
-* ConnTestWrapper class.
-*/
-class ConnTestWrapper: public QObject
-{
-    Q_OBJECT
-    
-    // TestWlanQtUtils is defined as a friend class in order to be able to
-    // call event handlers of wrappers.
-    friend class TestWlanQtUtils;
-
-public: // Constructor and destructor
-    
-    /**
-    * Default constructor
-    */
-    ConnTestWrapper(QObject *parent = 0);
-    
-    /**
-    * Destructor
-    */
-    ~ConnTestWrapper();
-    
-public: 
-    
-    /**
-    * Called by private wrapper when connectivity test is ready.
-    * 
-    * @param[in] result Result of internet connectivity test
-    */
-    void connectivityTestDone(bool result);
-
-public slots:
-
-    /**
-    * Starts internet connectivity test.
-    * 
-    * @param[in] iapId iap id
-    * @param[in] netId network id
-    */
-    void startConnectivityTest(int iapId, int netId);
-        
-signals:
-
-    /**
-    * Signal for emitting connectivity test result.
-    * 
-    * @param[in] result Result of internet connectivity test
-    */
-    void connectivityTestResult(bool result);
-
-private:
-    
-    /**
-    * d_ptr pointer to ConnTestWrapperPrivate
-    * Owned by ConnTestWrapper object, instantiated in constructor.
-    */
-    ConnTestWrapperPrivate *d_ptr_;
-};
-
-QT_END_HEADER
-
-QT_END_NAMESPACE
-
-#endif /* WLANQTUTILSCONNTESTWRAPPER_H_ */