1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

Kernel: Add empty BlockDevice class.

This commit is contained in:
Andreas Kling 2019-02-16 00:52:58 +01:00
parent 994279d56c
commit 2dc7c5a7b0
4 changed files with 17 additions and 2 deletions

11
Kernel/BlockDevice.h Normal file
View file

@ -0,0 +1,11 @@
#pragma once
#include <Kernel/Device.h>
class BlockDevice : public Device {
public:
virtual ~BlockDevice() override;
protected:
BlockDevice(unsigned major, unsigned minor) : Device(major, minor) { }
};