1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 21:25:07 +00:00
serenity/VirtualFileSystem/CharacterDevice.cpp
Andreas Kling 68739dc43e Start working on virtual consoles/TTYs.
This is a mess right now, but I'd rather commit as I go.
2018-10-30 13:59:29 +01:00

10 lines
167 B
C++

#include "CharacterDevice.h"
CharacterDevice::~CharacterDevice()
{
}
OwnPtr<FileHandle> CharacterDevice::open(int options)
{
//VirtualFileSystem::the().open()
}