diff options
author | Ted Gould <ted@canonical.com> | 2009-10-16 15:36:22 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-16 15:36:22 -0500 |
commit | 227666e9b4a1d928875513acfa8f019497a4261f (patch) | |
tree | 3aee3d9693a6f612e019acb27936ee0b985e874c /src/libcustomindicator/custom-indicator.c | |
parent | 664bc74b6f0b3eb6ca30539628e2350ed3a2e20c (diff) | |
parent | 50e28fd237a7de7e3f28332711dc01c7fe8e4dbd (diff) | |
download | ayatana-indicator-application-227666e9b4a1d928875513acfa8f019497a4261f.tar.gz ayatana-indicator-application-227666e9b4a1d928875513acfa8f019497a4261f.tar.bz2 ayatana-indicator-application-227666e9b4a1d928875513acfa8f019497a4261f.zip |
Merging in the library interface.
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; +} + |