blob: 649cc84bcc0de5c79b447f48d1c3fd724ff8a2d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <LibGUI/GNotifier.h>
#include <LibGUI/GEventLoop.h>
GNotifier::GNotifier(int fd, unsigned event_mask)
: m_fd(fd)
, m_event_mask(event_mask)
{
GEventLoop::register_notifier(Badge<GNotifier>(), *this);
}
GNotifier::~GNotifier()
{
GEventLoop::unregister_notifier(Badge<GNotifier>(), *this);
}
|