mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-09 16:42:10 +02:00
11 lines
167 B
C++
11 lines
167 B
C++
#include "CharacterDevice.h"
|
|
|
|
CharacterDevice::~CharacterDevice()
|
|
{
|
|
}
|
|
|
|
OwnPtr<FileHandle> CharacterDevice::open(int options)
|
|
{
|
|
//VirtualFileSystem::the().open()
|
|
}
|