summaryrefslogtreecommitdiff
path: root/Kernel/Devices/CharacterDevice.h
blob: 3e4778b2602f69d223d47671dfccc9282440a3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <Kernel/Devices/Device.h>

class CharacterDevice : public Device {
public:
    virtual ~CharacterDevice() override;

protected:
    CharacterDevice(unsigned major, unsigned minor)
        : Device(major, minor)
    {
    }

private:
    virtual bool is_character_device() const final { return true; }
};