diff options
author | Tambet Ingo <tambet@gmail.com> | 2008-10-30 15:15:23 +0200 |
---|---|---|
committer | Tambet Ingo <tambet@gmail.com> | 2008-10-30 15:15:23 +0200 |
commit | de6c6cd561a0a10342f9f5ff50168ac92f0d0282 (patch) | |
tree | b4ddae89e739b6d37d6fcda86cd83acaf611251b /plugins/mm-plugin-option.h | |
parent | fe4e7ee62b1956694aef2ceeeef63c57d4a865cc (diff) |
Implement Option plugin.
Diffstat (limited to 'plugins/mm-plugin-option.h')
-rw-r--r-- | plugins/mm-plugin-option.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/mm-plugin-option.h b/plugins/mm-plugin-option.h new file mode 100644 index 00000000..2cc7560f --- /dev/null +++ b/plugins/mm-plugin-option.h @@ -0,0 +1,26 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ + +#ifndef MM_PLUGIN_OPTION_H +#define MM_PLUGIN_OPTION_H + +#include "mm-plugin.h" +#include "mm-generic-gsm.h" + +#define MM_TYPE_PLUGIN_OPTION (mm_plugin_option_get_type ()) +#define MM_PLUGIN_OPTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_PLUGIN_OPTION, MMPluginOption)) +#define MM_PLUGIN_OPTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MM_TYPE_PLUGIN_OPTION, MMPluginOptionClass)) +#define MM_IS_PLUGIN_OPTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_PLUGIN_OPTION)) +#define MM_IS_PLUGIN_OPTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MM_TYPE_PLUGIN_OPTION)) +#define MM_PLUGIN_OPTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MM_TYPE_PLUGIN_OPTION, MMPluginOptionClass)) + +typedef struct { + GObject parent; +} MMPluginOption; + +typedef struct { + GObjectClass parent; +} MMPluginOptionClass; + +GType mm_plugin_option_get_type (void); + +#endif /* MM_PLUGIN_OPTION_H */ |