diff options
Diffstat (limited to 'plugins/changecase/pluma-changecase-plugin.h')
-rw-r--r-- | plugins/changecase/pluma-changecase-plugin.h | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/plugins/changecase/pluma-changecase-plugin.h b/plugins/changecase/pluma-changecase-plugin.h deleted file mode 100644 index d6611097..00000000 --- a/plugins/changecase/pluma-changecase-plugin.h +++ /dev/null @@ -1,79 +0,0 @@ -/* - * pluma-changecase-plugin.h - * - * Copyright (C) 2004-2005 - Paolo Borelli - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - * - * $Id$ - */ - -#ifndef __PLUMA_CHANGECASE_PLUGIN_H__ -#define __PLUMA_CHANGECASE_PLUGIN_H__ - -#include <glib.h> -#include <glib-object.h> -#include <libpeas/peas-extension-base.h> -#include <libpeas/peas-object-module.h> - -G_BEGIN_DECLS - -/* - * Type checking and casting macros - */ -#define PLUMA_TYPE_CHANGECASE_PLUGIN (pluma_changecase_plugin_get_type ()) -#define PLUMA_CHANGECASE_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), PLUMA_TYPE_CHANGECASE_PLUGIN, PlumaChangecasePlugin)) -#define PLUMA_CHANGECASE_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), PLUMA_TYPE_CHANGECASE_PLUGIN, PlumaChangecasePluginClass)) -#define PLUMA_IS_CHANGECASE_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), PLUMA_TYPE_CHANGECASE_PLUGIN)) -#define PLUMA_IS_CHANGECASE_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), PLUMA_TYPE_CHANGECASE_PLUGIN)) -#define PLUMA_CHANGECASE_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), PLUMA_TYPE_CHANGECASE_PLUGIN, PlumaChangecasePluginClass)) - -/* Private structure type */ -typedef struct _PlumaChangecasePluginPrivate PlumaChangecasePluginPrivate; - -/* - * Main object structure - */ -typedef struct _PlumaChangecasePlugin PlumaChangecasePlugin; - -struct _PlumaChangecasePlugin -{ - PeasExtensionBase parent_instance; - - /*< private >*/ - PlumaChangecasePluginPrivate *priv; -}; - -/* - * Class definition - */ -typedef struct _PlumaChangecasePluginClass PlumaChangecasePluginClass; - -struct _PlumaChangecasePluginClass -{ - PeasExtensionBaseClass parent_class; -}; - -/* - * Public methods - */ -GType pluma_changecase_plugin_get_type (void) G_GNUC_CONST; - -/* All the plugins must implement this function */ -G_MODULE_EXPORT void peas_register_types (PeasObjectModule *module); - -G_END_DECLS - -#endif /* __PLUMA_CHANGECASE_PLUGIN_H__ */ |