diff options
author | Ted Gould <ted@canonical.com> | 2009-10-15 21:12:52 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-15 21:12:52 -0500 |
commit | b666cc1867e04d697f381fa8033803b9e7d0f61d (patch) | |
tree | eaee5c113496b2cbdfd59076a20de74dc9b10cbd /src/libcustomindicator/custom-indicator.h | |
parent | be305bc2babcc1200930aa60e7d14554e8fba214 (diff) | |
download | libayatana-appindicator-b666cc1867e04d697f381fa8033803b9e7d0f61d.tar.gz libayatana-appindicator-b666cc1867e04d697f381fa8033803b9e7d0f61d.tar.bz2 libayatana-appindicator-b666cc1867e04d697f381fa8033803b9e7d0f61d.zip |
Building a basic library starting out.
Diffstat (limited to 'src/libcustomindicator/custom-indicator.h')
-rw-r--r-- | src/libcustomindicator/custom-indicator.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/libcustomindicator/custom-indicator.h b/src/libcustomindicator/custom-indicator.h new file mode 100644 index 0000000..6e94d3f --- /dev/null +++ b/src/libcustomindicator/custom-indicator.h @@ -0,0 +1,31 @@ +#ifndef __CUSTOM_INDICATOR_H__ +#define __CUSTOM_INDICATOR_H__ + +#include <glib.h> +#include <glib-object.h> + +G_BEGIN_DECLS + +#define CUSTOM_INDICATOR_TYPE (custom_indicator_get_type ()) +#define CUSTOM_INDICATOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CUSTOM_INDICATOR_TYPE, CustomIndicator)) +#define CUSTOM_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CUSTOM_INDICATOR_TYPE, CustomIndicatorClass)) +#define IS_CUSTOM_INDICATOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CUSTOM_INDICATOR_TYPE)) +#define IS_CUSTOM_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CUSTOM_INDICATOR_TYPE)) +#define CUSTOM_INDICATOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CUSTOM_INDICATOR_TYPE, CustomIndicatorClass)) + +typedef struct _CustomIndicator CustomIndicator; +typedef struct _CustomIndicatorClass CustomIndicatorClass; + +struct _CustomIndicatorClass { + GObjectClass parent_class; +}; + +struct _CustomIndicator { + GObject parent; +}; + +GType custom_indicator_get_type (void); + +G_END_DECLS + +#endif |