wlanutilities/wlanqtutilities/base/inc/wlanqtutilsiap.h
changeset 19 10810c91db26
child 31 e8f4211554fb
equal deleted inserted replaced
3:ff3b37722600 19:10810c91db26
       
     1 /*
       
     2 * Copyright (c) 2009 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 * This is a header file for WlanQtUtilsIap class.
       
    16 */
       
    17 
       
    18 #ifndef WLANQTUTILSIAP_H
       
    19 #define WLANQTUTILSIAP_H
       
    20 
       
    21 #include <QObject>
       
    22 #include "wlanqtutilscommon.h"
       
    23 
       
    24 class QString;
       
    25 
       
    26 class WLANQTUTILITIESDLL_EXPORT WlanQtUtilsIap : public QObject
       
    27 {
       
    28 
       
    29 public:
       
    30 
       
    31     WlanQtUtilsIap();
       
    32     WlanQtUtilsIap(
       
    33         int id,
       
    34         int netId,
       
    35         QString name,
       
    36         WlanQtUtilsBearerType bearerType);
       
    37     virtual ~WlanQtUtilsIap();
       
    38 
       
    39     int id() const;
       
    40     int networkId() const;
       
    41     QString name() const;
       
    42     WlanQtUtilsBearerType bearerType() const;
       
    43     WlanQtUtilsConnectionStatus connectionStatus() const;
       
    44     
       
    45     void setId(int id);
       
    46     void setNetworkId(int NetId);
       
    47     void setName(QString name);
       
    48     void setBearerType(WlanQtUtilsBearerType bearerType);
       
    49     void setConnectionStatus(WlanQtUtilsConnectionStatus connectionStatus);
       
    50 
       
    51 private:
       
    52     int id_;
       
    53     int netId_;
       
    54     QString name_;
       
    55     WlanQtUtilsBearerType bearerType_;
       
    56     WlanQtUtilsConnectionStatus connectionStatus_;
       
    57     // TODO: SNAP ID list
       
    58 };
       
    59 
       
    60 #endif /* WLANQTUTILSIAP_H */