Kernel: Replace is_* with kind field

Replaced the is_* virtual functions with a kind field instead
This commit is contained in:
2026-05-15 21:23:12 +03:00
committed by Bananymous
parent 647d6a273d
commit 16967cd9c0
8 changed files with 20 additions and 14 deletions
-2
View File
@@ -49,8 +49,6 @@ namespace Kernel
void on_key_event(LibInput::KeyEvent);
void handle_input_byte(uint8_t);
virtual bool is_tty() const override { return true; }
virtual void clear() = 0;
virtual BAN::ErrorOr<void> chmod_impl(mode_t) override;