wlanutilities/wpswizard/inc/wpswizardstepfour_p.h
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
--- a/wlanutilities/wpswizard/inc/wpswizardstepfour_p.h	Tue Aug 31 16:18:40 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,73 +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: WPS Wizard: Wrapper for middleware calls 
- *
- */
-
-#ifndef WPSWIZARDSTEPFOUR__P_H_
-#define WPSWIZARDSTEPFOUR__P_H_
-
-// System includes
-
-// User includes
-#include "wpswizardstepfour.h"
-
-// Forward declarations
-class MWpsActiveRunnerCallback;
-class CWpsActiveRunner;
-
-
-// External data types
-// Constants
-
-/*!
- * @addtogroup group_wps_wizard_plugin
- * @{
- */
-
-// Class declaration
-class WpsPageStepFourPrivate : public MWpsActiveRunnerCallback
-    {
-public:
-    
-    explicit WpsPageStepFourPrivate(WpsPageStepFour* pageStepFour);
-       ~WpsPageStepFourPrivate();
- 
-    /*!
-     * From mwpsactiverunnercallback.h
-     * This method is called from the active runner class to notify the end
-     * of operation
-     */
-    void WpsActiveRunnerStopped(
-            QList<TWlanProtectedSetupCredentialAttribute>& aCredentials,
-            TInt aError);
-    
-    void StartSetup(QString ssid,int pin);
-    
-    void Cancel();
-       
-
-protected:
-
-private: // data
-
-    //! C-Class implementation of the WPS setup functionality.
-    QScopedPointer<CWpsActiveRunner> mWpsActiveRunner;
-    //! Pointer to the WpsPageStepFour object
-    WpsPageStepFour* q_ptr;
-    
-    friend class TestWlanWizardContext;
-    };
-
-#endif /* WPSWIZARDSTEPFOUR__P_H_ */