2 * Copyright (C) 2003 Marco Pesenti Gritti
3 * Copyright (C) 2003, 2004 Christian Persch
4 * Copyright (C) 2003, 2004 Lee Willis
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, or (at your option)
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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * $Id: ephy-beagle-extension.h,v 1.1 2004/05/19 02:38:53 trow Exp $
23 #ifndef EPHY_BEAGLE_EXTENSION_H
24 #define EPHY_BEAGLE_EXTENSION_H
27 #include <glib-object.h>
31 #define EPHY_TYPE_BEAGLE_EXTENSION (ephy_beagle_extension_get_type ())
32 #define EPHY_BEAGLE_EXTENSION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o, EPHY_TYPE_BEAGLE_EXTENSION, EphyBeagleExtension))
33 #define EPHY_BEAGLE_EXTENSION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_BEAGLE_EXTENSION, EphyBeagleExtensionClass))
34 #define EPHY_IS_BEAGLE_EXTENSION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_BEAGLE_EXTENSION))
35 #define EPHY_IS_BEAGLE_EXTENSION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_BEAGLE_EXTENSION))
36 #define EPHY_BEAGLE_EXTENSION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_BEAGLE_EXTENSION, EphyBeagleExtensionClass))
38 typedef struct EphyBeagleExtension EphyBeagleExtension
;
39 typedef struct EphyBeagleExtensionClass EphyBeagleExtensionClass
;
40 typedef struct EphyBeagleExtensionPrivate EphyBeagleExtensionPrivate
;
42 struct EphyBeagleExtensionClass
44 GObjectClass parent_class
;
47 struct EphyBeagleExtension
49 GObject parent_instance
;
51 EphyBeagleExtensionPrivate
*priv
;
54 GType
ephy_beagle_extension_get_type (void);
56 GType
ephy_beagle_extension_register_type (GTypeModule
*module
);