1 /*
2  * Clutter.
3  *
4  * An OpenGL based 'interactive canvas' library.
5  *
6  * Copyright (C) 2016  Red Hat Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
20  *
21  * Author: Jonas Ådahl <jadahl@gmail.com>
22  */
23 
24 #ifndef __CLUTTER_VIRTUAL_INPUT_DEVICE_EVDEV_H__
25 #define __CLUTTER_VIRTUAL_INPUT_DEVICE_EVDEV_H__
26 
27 #include "clutter-virtual-input-device.h"
28 
29 #define CLUTTER_TYPE_VIRTUAL_INPUT_DEVICE_EVDEV (clutter_virtual_input_device_evdev_get_type ())
30 G_DECLARE_FINAL_TYPE (ClutterVirtualInputDeviceEvdev,
31                       clutter_virtual_input_device_evdev,
32                       CLUTTER, VIRTUAL_INPUT_DEVICE_EVDEV,
33                       ClutterVirtualInputDevice)
34 
35 #endif /* __CLUTTER_VIRTUAL_INPUT_DEVICE_EVDEV_H__ */
36