00001 #ifndef CABLE_DATA_H 00002 #define CABLE_DATA_H 00003 00004 #include <qstring.h> 00005 00006 class CableData { 00007 00008 public : 00009 00010 QString Device; 00011 QString LockFile; 00012 long Speed; 00013 short Parity; 00014 short DataBits; 00015 short StopBits; 00016 bool HardwareControl; 00017 bool SoftwareControl; 00018 00019 }; 00020 00021 #endif
1.4.2