aboutsummaryrefslogtreecommitdiff
path: root/src/libcustomindicator/custom-indicator.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-15 21:12:52 -0500
committerTed Gould <ted@canonical.com>2009-10-15 21:12:52 -0500
commitb666cc1867e04d697f381fa8033803b9e7d0f61d (patch)
treeeaee5c113496b2cbdfd59076a20de74dc9b10cbd /src/libcustomindicator/custom-indicator.c
parentbe305bc2babcc1200930aa60e7d14554e8fba214 (diff)
downloadayatana-indicator-application-b666cc1867e04d697f381fa8033803b9e7d0f61d.tar.gz
ayatana-indicator-application-b666cc1867e04d697f381fa8033803b9e7d0f61d.tar.bz2
ayatana-indicator-application-b666cc1867e04d697f381fa8033803b9e7d0f61d.zip
Building a basic library starting out.
Diffstat (limited to 'src/libcustomindicator/custom-indicator.c')
-rw-r--r--src/libcustomindicator/custom-indicator.c57
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;
+}
+