mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 16:05:07 +00:00

BlockDevice was the wrong name for this abstraction, since a block device is a type of file in a unix system, and we should use that name for that concept in the fs implementation.
9 lines
85 B
C++
9 lines
85 B
C++
#include "DiskDevice.h"
|
|
|
|
DiskDevice::DiskDevice()
|
|
{
|
|
}
|
|
|
|
DiskDevice::~DiskDevice()
|
|
{
|
|
}
|