ladybird/LibCore/CEvent.cpp
2019-04-10 17:01:54 +02:00

13 lines
203 B
C++

#include <LibCore/CEvent.h>
#include <LibCore/CObject.h>
CChildEvent::CChildEvent(Type type, CObject& child)
: CEvent(type)
, m_child(child.make_weak_ptr())
{
}
CChildEvent::~CChildEvent()
{
}