]> Pileus Git - grits/blob - src/aweather-plugin.h
7ef76cd304427c7821e925b159e8c9c30df3a3db
[grits] / src / aweather-plugin.h
1 /*
2  * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __AWEATHER_PLUGIN_H__
19 #define __AWEATHER_PLUGIN_H__
20
21 #include <glib-object.h>
22
23 #define AWEATHER_TYPE_PLUGIN                (aweather_plugin_get_type())
24 #define AWEATHER_PLUGIN(obj)                (G_TYPE_CHECK_INSTANCE_CAST   ((obj),  AWEATHER_TYPE_PLUGIN, AWeatherPlugin))
25 #define AWEATHER_IS_PLUGIN(obj)             (G_TYPE_CHECK_INSTANCE_TYPE   ((obj),  AWEATHER_TYPE_PLUGIN))
26 #define AWEATHER_PLUGIN_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE((inst), AWEATHER_TYPE_PLUGIN, AWeatherPluginInterface))
27
28
29 typedef struct _AWeatherPlugin          AWeatherPlugin;
30 typedef struct _AWeatherPluginInterface AWeatherPluginInterface;
31
32 struct _AWeatherPluginInterface
33 {
34         GTypeInterface parent_iface;
35
36         /* Virtual functions */
37         void (*expose)(AWeatherPlugin *self);
38 };
39
40 GType aweather_plugin_get_type();
41
42 /* Methods */
43 void aweather_plugin_expose(AWeatherPlugin *self);
44
45 #endif