diff options
author | Ted Gould <ted@canonical.com> | 2009-10-22 15:06:13 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-22 15:06:13 -0500 |
commit | 20d116ae0d74559cd5f30fe4f1bff08ed6378176 (patch) | |
tree | 0f462df1fa68bf689036afb5b413064a7bfb8a3a /src/libcustomindicator/custom-indicator.c | |
parent | 664bc74b6f0b3eb6ca30539628e2350ed3a2e20c (diff) | |
parent | 72815e195b42b8c4ed94f09af4b86a0d94393e5e (diff) | |
download | libayatana-appindicator-20d116ae0d74559cd5f30fe4f1bff08ed6378176.tar.gz libayatana-appindicator-20d116ae0d74559cd5f30fe4f1bff08ed6378176.tar.bz2 libayatana-appindicator-20d116ae0d74559cd5f30fe4f1bff08ed6378176.zip |
Branch building up the interface for the library.
Diffstat (limited to 'src/libcustomindicator/custom-indicator.c')
-rw-r--r-- | src/libcustomindicator/custom-indicator.c | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/libcustomindicator/custom-indicator.c b/src/libcustomindicator/custom-indicator.c new file mode 100644 index 0000000..e0fecbb --- /dev/null +++ b/src/libcustomindicator/custom-indicator.c @@ -0,0 +1,57 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "custom-indicator.h" + +typedef struct _CustomIndicatorPrivate CustomIndicatorPrivate; +struct _CustomIndicatorPrivate { + int placeholder; +}; + +#define CUSTOM_INDICATOR_GET_PRIVATE(o) \ +(G_TYPE_INSTANCE_GET_PRIVATE ((o), CUSTOM_INDICATOR_TYPE, CustomIndicatorPrivate)) + +static void custom_indicator_class_init (CustomIndicatorClass *klass); +static void custom_indicator_init (CustomIndicator *self); +static void custom_indicator_dispose (GObject *object); +static void custom_indicator_finalize (GObject *object); + +G_DEFINE_TYPE (CustomIndicator, custom_indicator, G_TYPE_OBJECT); + +static void +custom_indicator_class_init (CustomIndicatorClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + g_type_class_add_private (klass, sizeof (CustomIndicatorPrivate)); + + object_class->dispose = custom_indicator_dispose; + object_class->finalize = custom_indicator_finalize; + + return; +} + +static void +custom_indicator_init (CustomIndicator *self) +{ + + return; +} + +static void +custom_indicator_dispose (GObject *object) +{ + + G_OBJECT_CLASS (custom_indicator_parent_class)->dispose (object); + return; +} + +static void +custom_indicator_finalize (GObject *object) +{ + + G_OBJECT_CLASS (custom_indicator_parent_class)->finalize (object); + return; +} + |