wlanutilities/wpswizard/src/wpswizardpage.cpp
branchRCL_3
changeset 24 63be7eb3fc78
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
       
     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  *   WPS Wizard: API for wizard pages.
       
    16  *
       
    17  */
       
    18 
       
    19 // System includes
       
    20 #include <HbWidget>
       
    21 
       
    22 // User includes
       
    23 #include "wpswizard_p.h"
       
    24 #include "wpswizardpage.h"
       
    25 
       
    26 // Trace includes
       
    27 #include "OstTraceDefinitions.h"
       
    28 #ifdef OST_TRACE_COMPILER_IN_USE
       
    29 #include "wpswizardpageTraces.h"
       
    30 #endif
       
    31 
       
    32 // External function prototypes
       
    33 
       
    34 // Local constants
       
    35 
       
    36 /*!
       
    37    \class WpsWizardPage
       
    38    \brief Implementation of the basic wps wizard page functionality 
       
    39  */
       
    40 
       
    41 // ======== LOCAL FUNCTIONS ========
       
    42 
       
    43 
       
    44 // ======== MEMBER FUNCTIONS ========
       
    45 
       
    46 /*!
       
    47    Constructor for the WPS page baseclass
       
    48    
       
    49    @param [in] parent WpsWizardPrivate* pointer to the implementation class
       
    50  */
       
    51 
       
    52 WpsWizardPage::WpsWizardPage(WpsWizardPrivate* parent) :
       
    53     QObject(parent),
       
    54     mWizard(parent)
       
    55 {
       
    56     OstTraceFunctionEntry1(WPSWIZARDPAGE_WPSWIZARDPAGE_ENTRY, this); 
       
    57     OstTraceFunctionExit1(WPSWIZARDPAGE_WPSWIZARDPAGE_EXIT, this);
       
    58 }
       
    59 
       
    60 /*!
       
    61    Destructor
       
    62  */
       
    63 WpsWizardPage::~WpsWizardPage()
       
    64 {
       
    65     OstTraceFunctionEntry1(WPSWIZARDPAGE_WPSWIZARDPAGE_DESTRUCTOR_ENTRY, this);
       
    66     mWizard = NULL;
       
    67     OstTraceFunctionExit1(WPSWIZARDPAGE_WPSWIZARDPAGE_DESTRUCTOR_EXIT, this);
       
    68 }
       
    69