1 /*
2  * Copyright © 2016 Red Hat, Inc
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #include "config.h"
19 
20 #include <glib.h>
21 #include <gio/gio.h>
22 
23 #include "gdkmonitor-broadway.h"
24 #include "gdkscreen-broadway.h"
25 
26 
G_DEFINE_TYPE(GdkBroadwayMonitor,gdk_broadway_monitor,GDK_TYPE_MONITOR)27 G_DEFINE_TYPE (GdkBroadwayMonitor, gdk_broadway_monitor, GDK_TYPE_MONITOR)
28 
29 static void
30 gdk_broadway_monitor_init (GdkBroadwayMonitor *monitor)
31 {
32 }
33 
34 static void
gdk_broadway_monitor_class_init(GdkBroadwayMonitorClass * class)35 gdk_broadway_monitor_class_init (GdkBroadwayMonitorClass *class)
36 {
37 }
38