summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/wlan/wlandata.h
blob: 36990a98eba14d3cea6e50325bdecbd5ba6578d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef WLAN_DATA_H
#define WLAN_DATA_H

#include <qstring.h>
typedef struct WLanData {
      QString ESSID;
      QString NodeName;
      short Mode;
      bool SpecificAP;
      QString APMac;
      bool Encrypted;
      QString Key[4];
      bool AcceptNonEncrypted;
} WLanData_t; 

#endif