Initial import of ephy (rev# 7126) from svn
[ephy-soc.git] / src / ephy-python-extension.h
blobf1e6501fad3aa56ab5b7a09596d0434defbd9b00
1 /*
2 * Copyright © 2003 Marco Pesenti Gritti
3 * Copyright © 2003 Christian Persch
4 * Copyright © 2004, 2005 Adam Hooper
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)
9 * any later version.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * $Id: ephy-python-extension.h 6952 2007-03-11 19:42:02Z chpe $
23 #ifndef EPHY_PYTHON_EXTENSION_H
24 #define EPHY_PYTHON_EXTENSION_H
26 #include <glib.h>
27 #include <glib-object.h>
29 G_BEGIN_DECLS
31 #define EPHY_TYPE_PYTHON_EXTENSION (ephy_python_extension_get_type ())
32 #define EPHY_PYTHON_EXTENSION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_PYTHON_EXTENSION, EphyPythonExtension))
33 #define EPHY_PYTHON_EXTENSION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_PYTHON_EXTENSION, EphyPythonExtensionClass))
34 #define EPHY_IS_PYTHON_EXTENSION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_PYTHON_EXTENSION))
35 #define EPHY_IS_PYTHON_EXTENSION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_PYTHON_EXTENSION))
36 #define EPHY_PYTHON_EXTENSION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_PYTHON_EXTENSION, EphyPythonExtensionClass))
38 typedef struct _EphyPythonExtension EphyPythonExtension;
39 typedef struct _EphyPythonExtensionClass EphyPythonExtensionClass;
40 typedef struct _EphyPythonExtensionPrivate EphyPythonExtensionPrivate;
42 struct _EphyPythonExtensionClass
44 GObjectClass parent_class;
47 struct _EphyPythonExtension
49 GObject parent_instance;
51 /*< private >*/
52 EphyPythonExtensionPrivate *priv;
55 GType ephy_python_extension_get_type (void);
57 G_END_DECLS
59 #endif