summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/cable/cabledata.h
blob: c449d96163e006c2b0049acb3e2585c95856a79d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CABLE_DATA_H
#define CABLE_DATA_H

#include <qstring.h>

typedef struct CableData {
      QString Device;
      QString LockFile;
      long Speed;
      short Parity;
      short DataBits;
      short StopBits;
      bool HardwareControl;
      bool SoftwareControl;

} CableData_t; 

#endif