blob: eacce964c2260170c82cd5d10f14e3eef92c5438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <LibCore/CEvent.h>
#include <LibCore/CObject.h>
CChildEvent::CChildEvent(Type type, CObject& child)
: CEvent(type)
, m_child(child.make_weak_ptr())
{
}
CChildEvent::~CChildEvent()
{
}
|