summaryrefslogtreecommitdiffhomepage
path: root/Source/Network
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Network')
-rw-r--r--Source/Network/NetworkDevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Network/NetworkDevice.cpp b/Source/Network/NetworkDevice.cpp
index e20aeaac..766e1f2e 100644
--- a/Source/Network/NetworkDevice.cpp
+++ b/Source/Network/NetworkDevice.cpp
@@ -15,7 +15,7 @@
namespace hCore
{
NetworkDevice::NetworkDevice(void (*out)(NetworkDeviceCommand), void (*in)(NetworkDeviceCommand), void(*on_cleanup)(void))
- : IDevice<NetworkDeviceCommand>(out, in), fCleanup(on_cleanup)
+ : DeviceInterface<NetworkDeviceCommand>(out, in), fCleanup(on_cleanup)
{
#ifdef __DEBUG__
kcout << "NetworkDevice init.\r\n";