ladybird/Libraries/LibCore/CEvent.cpp

13 lines
203 B
C++
Raw Normal View History

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