diff options
Diffstat (limited to 'KernelKit/DebugOutput.hpp')
| -rw-r--r-- | KernelKit/DebugOutput.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/KernelKit/DebugOutput.hpp b/KernelKit/DebugOutput.hpp index 3bfb0144..1e30e6a4 100644 --- a/KernelKit/DebugOutput.hpp +++ b/KernelKit/DebugOutput.hpp @@ -16,10 +16,10 @@ namespace hCore { // @brief Emulates a VT100 terminal. - class TerminalDevice final : public IDevice<const char*> + class TerminalDevice final : public DeviceInterface<const char*> { public: - TerminalDevice(void (*print)(const char *), void (*get)(const char *)) : IDevice<const char*>(print, get) {} + TerminalDevice(void (*print)(const char *), void (*get)(const char *)) : DeviceInterface<const char*>(print, get) {} virtual ~TerminalDevice() {} /// @brief returns device name (terminal name) |
