diff options
author | Ted Gould <ted@canonical.com> | 2009-01-09 16:32:09 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-01-09 16:32:09 -0600 |
commit | 791b5f802bf0d0ffb72d39c85da512332c889453 (patch) | |
tree | 674915dc1d59d5777a19ea06d1e0ca6b48c26603 /libindicate/server.h | |
parent | 57b3f5814a7059fb382b377610b58703af6359b0 (diff) | |
download | libayatana-indicator-791b5f802bf0d0ffb72d39c85da512332c889453.tar.gz libayatana-indicator-791b5f802bf0d0ffb72d39c85da512332c889453.tar.bz2 libayatana-indicator-791b5f802bf0d0ffb72d39c85da512332c889453.zip |
Connecting indicators and servers. They create themselves easily.
Diffstat (limited to 'libindicate/server.h')
-rw-r--r-- | libindicate/server.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libindicate/server.h b/libindicate/server.h index 159bcd7..ba766cb 100644 --- a/libindicate/server.h +++ b/libindicate/server.h @@ -5,8 +5,6 @@ #include <glib.h> #include <glib-object.h> -#include "indicator.h" - /* Boilerplate */ #define INDICATE_TYPE_SERVER (indicate_server_get_type ()) #define INDICATE_SERVER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), INDICATE_TYPE_SERVER, IndicateServer)) @@ -16,6 +14,9 @@ #define INDICATE_SERVER_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), INDICATE_TYPE_SERVER, IndicateServerClass)) typedef struct _IndicateServer IndicateServer; + +#include "indicator.h" + struct _IndicateServer { GObject parent; |