diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-08-31 00:35:32 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-08-31 00:35:32 -0500 |
commit | 575b2aeee7b35734a4a621f112fe6f7b5033efc2 (patch) | |
tree | 0d626c1456bb8ac9a805bb1b781eab81e2408a28 /tdecore/tdenetworkconnections.cpp | |
parent | 5a858d4748b560886236e7d5ece8c3e2b0e45fd3 (diff) | |
download | tdelibs-575b2aeee7b35734a4a621f112fe6f7b5033efc2.tar.gz tdelibs-575b2aeee7b35734a4a621f112fe6f7b5033efc2.zip |
Add VPN and WiMax connection settings
Diffstat (limited to 'tdecore/tdenetworkconnections.cpp')
-rw-r--r-- | tdecore/tdenetworkconnections.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tdecore/tdenetworkconnections.cpp b/tdecore/tdenetworkconnections.cpp index 38d8a4e28..cda8e191e 100644 --- a/tdecore/tdenetworkconnections.cpp +++ b/tdecore/tdenetworkconnections.cpp @@ -435,6 +435,30 @@ TDEWiredInfinibandConnection::~TDEWiredInfinibandConnection() { } /*================================================================================================*/ +/* TDEVPNConnection */ +/*================================================================================================*/ + +TDEVPNConnection::TDEVPNConnection() : TDENetworkConnection() { + secretsValid = false; +} + +TDEVPNConnection::~TDEVPNConnection() { + // +} + +/*================================================================================================*/ +/* TDEWiMaxConnection */ +/*================================================================================================*/ + +TDEWiMaxConnection::TDEWiMaxConnection() : TDENetworkConnection() { + // +} + +TDEWiMaxConnection::~TDEWiMaxConnection() { + // +} + +/*================================================================================================*/ /* TDEWiFiConnection */ /*================================================================================================*/ |