31
|
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 |
* WLAN Wizard: Interface for wizard pages (wlan internal).
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
// System includes
|
|
20 |
#include <HbWidget>
|
|
21 |
|
|
22 |
// User includes
|
|
23 |
#include "wlanwizard_p.h"
|
|
24 |
#include "wlanwizardpageinternal.h"
|
|
25 |
|
|
26 |
/*!
|
|
27 |
\class WlanWizardPageInternal
|
|
28 |
\brief Interface for internal wlan wizard pages. Contains pointer to private
|
|
29 |
implementation of wlan wizard.
|
|
30 |
*/
|
|
31 |
|
|
32 |
// External function prototypes
|
|
33 |
|
|
34 |
// Local constants
|
|
35 |
|
|
36 |
// ======== LOCAL FUNCTIONS ========
|
|
37 |
|
|
38 |
// ======== MEMBER FUNCTIONS ========
|
|
39 |
|
|
40 |
/*!
|
|
41 |
Constructor
|
|
42 |
|
|
43 |
@param [in] wizard pointer to private implementation of wizard
|
|
44 |
*/
|
|
45 |
WlanWizardPageInternal::WlanWizardPageInternal(WlanWizardPrivate *wizard) :
|
|
46 |
QObject(wizard),
|
|
47 |
mWizard(wizard)
|
|
48 |
{
|
|
49 |
}
|
|
50 |
|
|
51 |
/*!
|
|
52 |
Destructor.
|
|
53 |
*/
|
|
54 |
WlanWizardPageInternal::~WlanWizardPageInternal()
|
|
55 |
{
|
|
56 |
}
|