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

#include <qstring.h>
typedef struct WLanData {
      QString Device;
      QString LockFile;
      long Speed;
      short Parity;
      short DataBits;
      short StopBits;
      bool HardwareControl;
      bool SoftwareControl;

} WLanData_t; 

#endif