From b75417b44d5f63ea0ead68cbe8f62bd76df62229 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 13 Feb 2024 17:20:30 +0100 Subject: HCR-15: Merge to master branch. Important commit and end of ticket. Signed-off-by: Amlal El Mahrouss --- Private/Source/Device.cxx | 10 ---------- Private/Source/DeviceManager.cxx | 10 ++++++++++ Private/Source/DriveManager.cxx | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 Private/Source/Device.cxx create mode 100644 Private/Source/DeviceManager.cxx (limited to 'Private/Source') diff --git a/Private/Source/Device.cxx b/Private/Source/Device.cxx deleted file mode 100644 index ae72fdad..00000000 --- a/Private/Source/Device.cxx +++ /dev/null @@ -1,10 +0,0 @@ -/* - * ======================================================== - * - * HCore - * Copyright Mahrouss Logic, all rights reserved. - * - * ======================================================== - */ - -#include diff --git a/Private/Source/DeviceManager.cxx b/Private/Source/DeviceManager.cxx new file mode 100644 index 00000000..e5b84bd3 --- /dev/null +++ b/Private/Source/DeviceManager.cxx @@ -0,0 +1,10 @@ +/* + * ======================================================== + * + * HCore + * Copyright Mahrouss Logic, all rights reserved. + * + * ======================================================== + */ + +#include diff --git a/Private/Source/DriveManager.cxx b/Private/Source/DriveManager.cxx index bc100a1a..371758b1 100644 --- a/Private/Source/DriveManager.cxx +++ b/Private/Source/DriveManager.cxx @@ -33,7 +33,7 @@ bool DriveSelector::Mount(DriveTraits *drive) { fDrive = drive; fDrive->fMount(); - kcout << "[Krnl] mounted: " << fDrive->fName << "\n"; + kcout << "Mount: " << fDrive->fName << "\n"; return true; } @@ -49,7 +49,7 @@ DriveTraits *DriveSelector::Unmount() { fDrive->fUnmount(); fDrive = nullptr; - kcout << "[Krnl] unmounted: " << fDrive->fName << "\n"; + kcout << "Unmount: " << fDrive->fName << "\n"; return drivePointer; } -- cgit v1.2.3