/* * notify-monitor.c - A gobject subclass to watch dbus for org.freedesktop.Notification.Notify messages. */ #include #include "notify-monitor.h" static void notify_monitor_class_init(NotifyMonitorClass *klass); static void notify_monitor_init(NotifyMonitor *monitor); G_DEFINE_TYPE (NotifyMonitor, notify_monitor, G_TYPE_OBJECT); static void notify_monitor_class_init(NotifyMonitorClass *klass) { } static void notify_monitor_init(NotifyMonitor *monitor) { } NotifyMonitor* notify_monitor_new(void) { return NOTIFY_MONITOR(g_object_new(NOTIFY_MONITOR_TYPE, NULL)); }