summaryrefslogtreecommitdiffstats
path: root/knetworkconf/knetworkconf/kroutinginfo.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:00:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:00:43 -0600
commit2c4a290ae270924340991931a9e0ca793f8e9443 (patch)
tree7aa3b953d70dbdd6a5de525cdd7a5f4319ee1dd5 /knetworkconf/knetworkconf/kroutinginfo.h
parent567923f30f7c0700cb526f26c20b5577bfe2a802 (diff)
downloadtdeadmin-2c4a290ae270924340991931a9e0ca793f8e9443.tar.gz
tdeadmin-2c4a290ae270924340991931a9e0ca793f8e9443.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'knetworkconf/knetworkconf/kroutinginfo.h')
-rw-r--r--knetworkconf/knetworkconf/kroutinginfo.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/knetworkconf/knetworkconf/kroutinginfo.h b/knetworkconf/knetworkconf/kroutinginfo.h
deleted file mode 100644
index febcd18..0000000
--- a/knetworkconf/knetworkconf/kroutinginfo.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/***************************************************************************
- kroutinginfo.h - description
- -------------------
- begin : Mon Mar 3 2003
- copyright : (C) 2003 by Juan Luis Baptiste
- email : juancho@linuxmail.org
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
-
-#ifndef KROUTINGINFO_H
-#define KROUTINGINFO_H
-
-#include <tqstring.h>
-
-
-/**Has all the routing info of the machine, like default gateway, default gateway device,
- routes to other hosts and networks, etc.
-
- *@author Juan Luis Baptiste
- */
-
-class KRoutingInfo {
-public:
- KRoutingInfo();
- ~KRoutingInfo();
-private: // Private attributes
- TQString networking;
- TQString forwardIPv4;
- TQString hostName;
- TQString domainName;
- TQString gateway;
- TQString gatewayDevice;
-
-public: // Public attributes
- TQString isNetworkingEnabled();
- TQString isForwardIPv4Enabled();
- TQString getHostName();
- TQString getGatewayDevice();
- TQString getGateway();
- TQString getDomainName();
- void setNetworkingEnabled(const TQString &networking);
- void setForwardIPv4Enabled(const TQString &forwardIPv4);
- void setHostName(const TQString &hostName);
- void setDomainName(const TQString &domainName);
- void setGateway(const TQString &gateway);
- void setGatewayDevice(const TQString &gatewayDevice);
-
-};
-
-#endif