mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
8cbb7f101f
This will allow us to implement different behaviors depending on the role of the descriptor a File is being accessed through.
17 lines
629 B
C++
17 lines
629 B
C++
#include <Kernel/Devices/CharacterDevice.h>
|
|
|
|
class DebugLogDevice final : public CharacterDevice {
|
|
public:
|
|
DebugLogDevice();
|
|
virtual ~DebugLogDevice() override;
|
|
|
|
static DebugLogDevice& the();
|
|
|
|
private:
|
|
// ^CharacterDevice
|
|
virtual ssize_t read(FileDescriptor&, byte*, ssize_t) override { return 0; }
|
|
virtual ssize_t write(FileDescriptor&, const byte*, ssize_t) override;
|
|
virtual bool can_write(FileDescriptor&) const override { return true; }
|
|
virtual bool can_read(FileDescriptor&) const override { return true; }
|
|
virtual const char* class_name() const override { return "DebugLogDevice"; }
|
|
};
|