mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-02 16:25:34 +03:00
12 lines
213 B
C
12 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) { }
|
||
|
};
|