1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:28:10 +00:00
serenity/Kernel/BlockDevice.h
2019-02-16 00:52:58 +01:00

11 lines
213 B
C++

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