mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 14:55:08 +00:00
10 lines
194 B
C++
10 lines
194 B
C++
#include "CharacterDevice.h"
|
|
|
|
CharacterDevice::~CharacterDevice()
|
|
{
|
|
}
|
|
|
|
RetainPtr<FileDescriptor> CharacterDevice::open(int options)
|
|
{
|
|
return VirtualFileSystem::the().open(*this, options);
|
|
}
|