wlanutilities/wlanqtutilities/base/src/wlanqtutilsiap.cpp
branchRCL_3
changeset 24 63be7eb3fc78
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
       
     1 /*
       
     2 * Copyright (c) 2009-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 IAP (Internet Access Point, known network) class.
       
    16 */
       
    17 
       
    18 // System includes
       
    19 
       
    20 // User includes
       
    21 
       
    22 #include "wlanqtutilsiap.h"
       
    23 
       
    24 /*!
       
    25     \class WlanQtUtilsIapPrivate
       
    26     \brief Private implementation of WlanQtUtilsIap.
       
    27     
       
    28     This class is reserved for WlanQtUtilsIap private implementation.
       
    29 
       
    30     NOTE: Even though there is currently no implementation, this is
       
    31     required for possible later additions to avoid binary compatibility
       
    32     break.
       
    33 */
       
    34 
       
    35 class WlanQtUtilsIapPrivate
       
    36 {
       
    37     friend class WlanQtUtilsIap;
       
    38 };
       
    39 
       
    40 /*!
       
    41     \class WlanQtUtilsIap
       
    42     \brief WLAN Internet Access Point class.
       
    43 
       
    44     Contains the information related to known WLAN access points.
       
    45 */
       
    46 
       
    47 // External function prototypes
       
    48 
       
    49 // Local constants
       
    50 
       
    51 // ======== LOCAL FUNCTIONS ========
       
    52 
       
    53 // ======== MEMBER FUNCTIONS ========
       
    54 
       
    55 /*!
       
    56     Constructor.
       
    57 */
       
    58 
       
    59 WlanQtUtilsIap::WlanQtUtilsIap() :
       
    60     WlanQtUtilsAp(),
       
    61     d_ptr(new WlanQtUtilsIapPrivate())
       
    62 {
       
    63 }
       
    64 
       
    65 /*!
       
    66     Destructor.
       
    67 */
       
    68 
       
    69 WlanQtUtilsIap::~WlanQtUtilsIap()
       
    70 {
       
    71 }