CEvent.cpp 203 B

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