summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/vpn/vpndata.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings2/vpn/vpndata.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/vpn/vpndata.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/vpn/vpndata.h b/noncore/settings/networksettings2/vpn/vpndata.h
new file mode 100644
index 0000000..5c986aa
--- a/dev/null
+++ b/noncore/settings/networksettings2/vpn/vpndata.h
@@ -0,0 +1,16 @@
+#ifndef VPN_DATA_H
+#define VPN_DATA_H
+
+#include <qstring.h>
+typedef struct VPNData {
+ QString Device;
+ QString LockFile;
+ long Speed;
+ short Parity;
+ short DataBits;
+ short StopBits;
+ bool HardwareControl;
+ bool SoftwareControl;
+} VPNData_t;
+
+#endif