1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 
3 /*
4  * Copyright 2021 Canonical, Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see <http://www.gnu.org/licenses/>.
18  *
19  * Author: Marco Trevisan <marco.trevisan@canonical.com>
20  */
21 
22 #pragma once
23 
24 #include "backends/meta-input-settings-private.h"
25 
26 #define META_TYPE_INPUT_SETTINGS_DUMMY (meta_input_settings_dummy_get_type ())
27 
28 G_DECLARE_DERIVABLE_TYPE (MetaInputSettingsDummy, meta_input_settings_dummy,
29                           META, INPUT_SETTINGS_DUMMY, MetaInputSettings);
30 
31 struct _MetaInputSettingsDummyClass
32 {
33   MetaInputSettingsClass parent_class;
34 };
35