2008-11-03 16:08:13 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
2007-11-26 03:47:30 +00:00
|
|
|
/* NetworkManager system settings service
|
|
|
|
|
*
|
2008-11-03 16:08:13 +00:00
|
|
|
* Dan Williams <dcbw@redhat.com>
|
2007-11-26 03:47:30 +00:00
|
|
|
* Søren Sandmann <sandmann@daimi.au.dk>
|
|
|
|
|
*
|
|
|
|
|
* 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 of the License, 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.
|
|
|
|
|
*
|
2008-06-26 18:31:52 +00:00
|
|
|
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-11-26 03:47:30 +00:00
|
|
|
*
|
2008-11-03 16:08:13 +00:00
|
|
|
* Copyright (C) 2007 - 2008 Red Hat, Inc.
|
2007-11-26 03:47:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _PLUGIN_H_
|
|
|
|
|
#define _PLUGIN_H_
|
|
|
|
|
|
2015-04-13 13:31:42 -04:00
|
|
|
#include "nm-exported-object.h"
|
2007-11-26 03:47:30 +00:00
|
|
|
|
2015-04-16 08:52:20 -04:00
|
|
|
#define SETTINGS_TYPE_PLUGIN_IFCFG (settings_plugin_ifcfg_get_type ())
|
|
|
|
|
#define SETTINGS_PLUGIN_IFCFG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SETTINGS_TYPE_PLUGIN_IFCFG, SettingsPluginIfcfg))
|
|
|
|
|
#define SETTINGS_PLUGIN_IFCFG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SETTINGS_TYPE_PLUGIN_IFCFG, SettingsPluginIfcfgClass))
|
|
|
|
|
#define SETTINGS_IS_PLUGIN_IFCFG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SETTINGS_TYPE_PLUGIN_IFCFG))
|
|
|
|
|
#define SETTINGS_IS_PLUGIN_IFCFG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SETTINGS_TYPE_PLUGIN_IFCFG))
|
|
|
|
|
#define SETTINGS_PLUGIN_IFCFG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SETTINGS_TYPE_PLUGIN_IFCFG, SettingsPluginIfcfgClass))
|
2007-11-26 03:47:30 +00:00
|
|
|
|
2015-04-16 08:52:20 -04:00
|
|
|
typedef struct _SettingsPluginIfcfg SettingsPluginIfcfg;
|
|
|
|
|
typedef struct _SettingsPluginIfcfgClass SettingsPluginIfcfgClass;
|
2007-11-26 03:47:30 +00:00
|
|
|
|
2015-04-16 08:52:20 -04:00
|
|
|
struct _SettingsPluginIfcfg {
|
2015-04-13 13:31:42 -04:00
|
|
|
NMExportedObject parent;
|
2007-11-26 03:47:30 +00:00
|
|
|
};
|
|
|
|
|
|
2015-04-16 08:52:20 -04:00
|
|
|
struct _SettingsPluginIfcfgClass {
|
2015-04-13 13:31:42 -04:00
|
|
|
NMExportedObjectClass parent;
|
2007-11-26 03:47:30 +00:00
|
|
|
};
|
|
|
|
|
|
2015-04-16 08:52:20 -04:00
|
|
|
GType settings_plugin_ifcfg_get_type (void);
|
2007-11-26 03:47:30 +00:00
|
|
|
|
|
|
|
|
#endif /* _PLUGIN_H_ */
|
|
|
|
|
|