diff options
author | Ted Gould <ted@canonical.com> | 2009-01-13 13:26:13 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-01-13 13:26:13 -0600 |
commit | 5030c345d9189a24203e030e8eb637a832d43b26 (patch) | |
tree | faa3953e36e20526eecb05d92b3a35e8c6f32a6f /libindicate/indicator.h | |
parent | 55256284a380043320b61b0f5f38741b083e94ab (diff) | |
parent | 71820cb18ffb779c39e15e758515c6bcad8ac455 (diff) | |
download | libayatana-indicator-5030c345d9189a24203e030e8eb637a832d43b26.tar.gz libayatana-indicator-5030c345d9189a24203e030e8eb637a832d43b26.tar.bz2 libayatana-indicator-5030c345d9189a24203e030e8eb637a832d43b26.zip |
Merging in Robert's changes.
Diffstat (limited to 'libindicate/indicator.h')
-rw-r--r-- | libindicate/indicator.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libindicate/indicator.h b/libindicate/indicator.h index 3c8efc8..2a15e3b 100644 --- a/libindicate/indicator.h +++ b/libindicate/indicator.h @@ -5,6 +5,8 @@ #include <glib.h> #include <glib-object.h> +G_BEGIN_DECLS + /* Boilerplate */ #define INDICATE_TYPE_INDICATOR (indicate_indicator_get_type ()) #define INDICATE_INDICATOR(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), INDICATE_TYPE_INDICATOR, IndicateIndicator)) @@ -43,6 +45,8 @@ struct _IndicateIndicatorClass { const gchar * (*get_type) (IndicateIndicator * indicator); }; +GType indicate_indicator_get_type(void) G_GNUC_CONST; + IndicateIndicator * indicate_indicator_new (void); /* Should these just be GObject properties? */ @@ -61,6 +65,7 @@ guint indicate_indicator_get_id (IndicateIndicator * indicator); * subclass and exported through this pretty function */ const gchar * indicate_indicator_get_indicator_type (IndicateIndicator * indicator); +G_END_DECLS #endif /* INDICATE_INDICATOR_H_INCLUDED__ */ |