From 1b89319fd93b88313cab40f1e9de24c067b04efb Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 6 Dec 2011 14:15:01 -0600 Subject: Initial TQt conversion --- src/vpnaccountdata.h | 430 +++++++++++++++++++++++++-------------------------- 1 file changed, 215 insertions(+), 215 deletions(-) (limited to 'src/vpnaccountdata.h') diff --git a/src/vpnaccountdata.h b/src/vpnaccountdata.h index ed83ce7..68ee694 100644 --- a/src/vpnaccountdata.h +++ b/src/vpnaccountdata.h @@ -20,15 +20,15 @@ #ifndef VPNACCOUNTDATA_H #define VPNACCOUNTDATA_H -#include -#include -#include +#include +#include +#include /** * holds the data for a account * @author Christoph Thielecke */ -class VpnAccountData : public QObject +class VpnAccountData : public TQObject { public: enum ConnectionType {cisco=0, racoon=1, freeswan=2, pptp=3,openvpn=4,l2tpd_racoon=5,l2tpd_freeswan=6,ciscoorig=7,vtun=8,ssh=9,other=99}; @@ -42,7 +42,7 @@ public: * @param Gateway The hostname/IP of the VPN gateway * @return nothing */ - VpnAccountData( ConnectionType ConnType, const QString &Name); + VpnAccountData( ConnectionType ConnType, const TQString &Name); /** * Destruktor @@ -55,74 +55,74 @@ public: VpnAccountData(const VpnAccountData&); ConnectionType getConnectionType() const; //< returns Connection type - QString getName() const; //< returns Name - QString getGateway() const; //< returns Gateway - QString getID() const; //< returns ID - QString getUserName() const; //< returns UserName - QString getUserPassword() const; //< returns UserPassword - QString getIkeGroup() const; //< returns IkeGroup - QString getEncryptionAlgorithm() const; //< returns EncryptionAlgorithm - QString getAuthenticationAlgorithm() const; //< returns AuthenticationAlgorithm - QString getPerfectForwardSecrety() const; //< returns PerfectForwardSecrecy - QString getNtDomainName() const; //< returns NtDomainName - QString getApplicationVersion() const; //< returns ApplicationVersion - QString getRemoteNetAddr() const; //