1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2 /*
3  * brasero
4  * Copyright (C) Rouquier Philippe 2009 <bonfire-app@wanadoo.fr>
5  *
6  * brasero is free software: you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * brasero 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.
14  * See the GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef _BRASERO_SEARCH_TRACKER_H_
21 #define _BRASERO_SEARCH_TRACKER_H_
22 
23 #include <glib-object.h>
24 
25 G_BEGIN_DECLS
26 
27 #define BRASERO_TYPE_SEARCH_TRACKER             (brasero_search_tracker_get_type ())
28 #define BRASERO_SEARCH_TRACKER(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), BRASERO_TYPE_SEARCH_TRACKER, BraseroSearchTracker))
29 #define BRASERO_SEARCH_TRACKER_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), BRASERO_TYPE_SEARCH_TRACKER, BraseroSearchTrackerClass))
30 #define BRASERO_IS_SEARCH_TRACKER(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BRASERO_TYPE_SEARCH_TRACKER))
31 #define BRASERO_IS_SEARCH_TRACKER_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), BRASERO_TYPE_SEARCH_TRACKER))
32 #define BRASERO_SEARCH_TRACKER_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), BRASERO_TYPE_SEARCH_TRACKER, BraseroSearchTrackerClass))
33 
34 typedef struct _BraseroSearchTrackerClass BraseroSearchTrackerClass;
35 typedef struct _BraseroSearchTracker BraseroSearchTracker;
36 
37 struct _BraseroSearchTrackerClass
38 {
39 	GObjectClass parent_class;
40 };
41 
42 struct _BraseroSearchTracker
43 {
44 	GObject parent_instance;
45 };
46 
47 GType brasero_search_tracker_get_type (void) G_GNUC_CONST;
48 
49 G_END_DECLS
50 
51 #endif /* _BRASERO_SEARCH_TRACKER_H_ */
52