mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 16:18:12 +00:00
LibCore: Add a hook for custom construction of EventLoopImplementation
This commit is contained in:
parent
16c47ccff6
commit
31289a8d57
3 changed files with 7 additions and 1 deletions
|
@ -30,8 +30,10 @@ bool has_event_loop()
|
|||
}
|
||||
}
|
||||
|
||||
Function<NonnullOwnPtr<EventLoopImplementation>()> EventLoop::make_implementation = EventLoopImplementationUnix::create;
|
||||
|
||||
EventLoop::EventLoop()
|
||||
: m_impl(make<EventLoopImplementationUnix>())
|
||||
: m_impl(make_implementation())
|
||||
{
|
||||
if (event_loop_stack().is_empty()) {
|
||||
event_loop_stack().append(*this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue