blob: 1d5ad6c8164ec64c0e1211b67d8d9d297d3f4ef3 (
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::main().register_notifier(Badge<GNotifier>(), *this);
}
GNotifier::~GNotifier()
{
GEventLoop::main().unregister_notifier(Badge<GNotifier>(), *this);
}
|