~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to src/brasero-search-beagle.h

  • Committer: Package Import Robot
  • Author(s): Rodrigo Moya
  • Date: 2011-09-09 12:27:41 UTC
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: package-import@ubuntu.com-20110909122741-b929bk0txqsqsyyi
Tags: upstream-3.1.90
ImportĀ upstreamĀ versionĀ 3.1.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2
 
/*
3
 
 * Brasero
4
 
 * Copyright (C) Philippe Rouquier 2005-2009 <bonfire-app@wanadoo.fr>
5
 
 * 
6
 
 *  Brasero 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
 
 * brasero 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.
14
 
 * See the GNU General Public License for more details.
15
 
 * 
16
 
 * You should have received a copy of the GNU General Public License
17
 
 * along with brasero.  If not, write to:
18
 
 *      The Free Software Foundation, Inc.,
19
 
 *      51 Franklin Street, Fifth Floor
20
 
 *      Boston, MA  02110-1301, USA.
21
 
 */
22
 
 
23
 
#ifndef _BRASERO_SEARCH_BEAGLE_H_
24
 
#define _BRASERO_SEARCH_BEAGLE_H_
25
 
 
26
 
#include <glib-object.h>
27
 
 
28
 
G_BEGIN_DECLS
29
 
 
30
 
#define BRASERO_TYPE_SEARCH_BEAGLE             (brasero_search_beagle_get_type ())
31
 
#define BRASERO_SEARCH_BEAGLE(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), BRASERO_TYPE_SEARCH_BEAGLE, BraseroSearchBeagle))
32
 
#define BRASERO_SEARCH_BEAGLE_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), BRASERO_TYPE_SEARCH_BEAGLE, BraseroSearchBeagleClass))
33
 
#define BRASERO_IS_SEARCH_BEAGLE(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BRASERO_TYPE_SEARCH_BEAGLE))
34
 
#define BRASERO_IS_SEARCH_BEAGLE_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), BRASERO_TYPE_SEARCH_BEAGLE))
35
 
#define BRASERO_SEARCH_BEAGLE_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), BRASERO_TYPE_SEARCH_BEAGLE, BraseroSearchBeagleClass))
36
 
 
37
 
typedef struct _BraseroSearchBeagleClass BraseroSearchBeagleClass;
38
 
typedef struct _BraseroSearchBeagle BraseroSearchBeagle;
39
 
 
40
 
struct _BraseroSearchBeagleClass
41
 
{
42
 
        GObjectClass parent_class;
43
 
};
44
 
 
45
 
struct _BraseroSearchBeagle
46
 
{
47
 
        GObject parent_instance;
48
 
};
49
 
 
50
 
GType brasero_search_beagle_get_type (void) G_GNUC_CONST;
51
 
 
52
 
G_END_DECLS
53
 
 
54
 
#endif /* _BRASERO_SEARCH_BEAGLE_H_ */