summaryrefslogtreecommitdiffhomepage
path: root/Private/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Private/Source')
-rw-r--r--Private/Source/Network/NetworkDevice.cxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/Private/Source/Network/NetworkDevice.cxx b/Private/Source/Network/NetworkDevice.cxx
index 0d9af73d..eba95a2c 100644
--- a/Private/Source/Network/NetworkDevice.cxx
+++ b/Private/Source/Network/NetworkDevice.cxx
@@ -6,24 +6,6 @@
#include <NetworkKit/NetworkDevice.hpp>
-// network devices implementation.
-// PPPNetworkService, TCPNetworkDevice, UDPNetworkService
-
namespace HCore {
-NetworkDevice::NetworkDevice(void (*out)(NetworkDeviceCommand),
- void (*in)(NetworkDeviceCommand),
- void (*on_cleanup)(void))
- : DeviceInterface<NetworkDeviceCommand>(out, in), fCleanup(on_cleanup) {
-#ifdef __DEBUG__
- kcout << "NetworkDevice init.\r\n";
-#endif
-}
-
-NetworkDevice::~NetworkDevice() {
-#ifdef __DEBUG__
- kcout << "NetworkDevice cleanup.\r\n";
-#endif
- if (fCleanup) fCleanup();
-}
} // namespace HCore