summaryrefslogtreecommitdiffhomepage
path: root/Private/Source/Network/NetworkDevice.cpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-29 18:17:47 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-29 18:18:59 +0100
commit65254486efff0fd1bb78a48ff90b7713a5ce539f (patch)
tree20ce02c12a74ba9e6cd382bf9c1f09a0c611cb4d /Private/Source/Network/NetworkDevice.cpp
parentf03986937db0b927da4b10554801e18e4dc7c43f (diff)
Kernel: Update TODO.
Src: Refactorings according to clang-format. Meta: Update specification. Public: Remove useless UIKit. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/Source/Network/NetworkDevice.cpp')
-rw-r--r--Private/Source/Network/NetworkDevice.cpp26
1 files changed, 12 insertions, 14 deletions
diff --git a/Private/Source/Network/NetworkDevice.cpp b/Private/Source/Network/NetworkDevice.cpp
index 766e1f2e..bd75d7ed 100644
--- a/Private/Source/Network/NetworkDevice.cpp
+++ b/Private/Source/Network/NetworkDevice.cpp
@@ -12,23 +12,21 @@
// 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)
- {
+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";
+ kcout << "NetworkDevice init.\r\n";
#endif
- }
+}
- NetworkDevice::~NetworkDevice()
- {
+NetworkDevice::~NetworkDevice() {
#ifdef __DEBUG__
- kcout << "NetworkDevice cleanup.\r\n";
+ kcout << "NetworkDevice cleanup.\r\n";
#endif
- if (fCleanup)
- fCleanup();
- }
-} // namespace NewKit
+ if (fCleanup) fCleanup();
+}
+} // namespace hCore