mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
994279d56c
..to prepare for adding a BlockDevice class.
11 lines
225 B
C++
11 lines
225 B
C++
#pragma once
|
|
|
|
#include <Kernel/Device.h>
|
|
|
|
class CharacterDevice : public Device {
|
|
public:
|
|
virtual ~CharacterDevice() override;
|
|
|
|
protected:
|
|
CharacterDevice(unsigned major, unsigned minor) : Device(major, minor) { }
|
|
};
|