mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:38:12 +00:00
12 lines
202 B
C++
12 lines
202 B
C++
#include <LibCore/CEvent.h>
|
|
#include <LibGUI/GObject.h>
|
|
|
|
CChildEvent::CChildEvent(Type type, GObject& child)
|
|
: CEvent(type)
|
|
, m_child(child.make_weak_ptr())
|
|
{
|
|
}
|
|
|
|
CChildEvent::~CChildEvent()
|
|
{
|
|
}
|