summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/vpn/vpndata.h
blob: ee88bc4e9125b0b47cb7f26be7b0b22b47f73bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef VPN_DATA_H
#define VPN_DATA_H

#include <qstring.h>
class VPNData {
public :
      QString Device;
      QString LockFile;
      long Speed;
      short Parity;
      short DataBits;
      short StopBits;
      bool HardwareControl;
      bool SoftwareControl;
} ; 

#endif