mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:28:10 +00:00
11 lines
213 B
C++
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) { }
|
|
};
|