mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
11 lines
194 B
C++
11 lines
194 B
C++
#include "CharacterDevice.h"
|
|
|
|
CharacterDevice::~CharacterDevice()
|
|
{
|
|
}
|
|
|
|
RetainPtr<FileDescriptor> CharacterDevice::open(int options)
|
|
{
|
|
return VirtualFileSystem::the().open(*this, options);
|
|
}
|