Kernel: Add empty BlockDevice class.

This commit is contained in:
Andreas Kling 2019-02-16 00:52:58 +01:00
commit 2dc7c5a7b0
Notes: sideshowbarker 2024-07-19 15:42:14 +09:00
4 changed files with 17 additions and 2 deletions

5
Kernel/BlockDevice.cpp Normal file
View file

@ -0,0 +1,5 @@
#include <Kernel/BlockDevice.h>
BlockDevice::~BlockDevice()
{
}