1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2  *
3  * Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
4  * Copyright (C) 2011-2013 Richard Hughes <richard@hughsie.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU 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  */
20 
21 #ifndef __GSD_COLOR_CALIBRATE_H
22 #define __GSD_COLOR_CALIBRATE_H
23 
24 #include <glib-object.h>
25 
26 G_BEGIN_DECLS
27 
28 #define GSD_TYPE_COLOR_CALIBRATE         (gsd_color_calibrate_get_type ())
29 G_DECLARE_FINAL_TYPE (GsdColorCalibrate, gsd_color_calibrate, GSD, COLOR_CALIBRATE, GObject)
30 
31 GType                   gsd_color_calibrate_get_type            (void);
32 GQuark                  gsd_color_calibrate_error_quark         (void);
33 
34 GsdColorCalibrate *     gsd_color_calibrate_new                 (void);
35 
36 G_END_DECLS
37 
38 #endif /* __GSD_COLOR_CALIBRATE_H */
39