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

#include <qstring.h>

class CableData {

public :

      QString Device;
      QString LockFile;
      long Speed;
      short Parity;
      short DataBits;
      short StopBits;
      bool HardwareControl;
      bool SoftwareControl;

}; 

#endif