#ifndef VPN_DATA_H #define VPN_DATA_H #include typedef struct VPNData { QString Device; QString LockFile; long Speed; short Parity; short DataBits; short StopBits; bool HardwareControl; bool SoftwareControl; } VPNData_t; #endif