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/indicator.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/indicator.h')
-rw-r--r-- | libindicate/indicator.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libindicate/indicator.h b/libindicate/indicator.h index e427f25..77fd82f 100644 --- a/libindicate/indicator.h +++ b/libindicate/indicator.h @@ -19,13 +19,17 @@ #define INDICATE_INDICATOR_SIGNAL_DISPLAY "user-display" typedef struct _IndicateIndicator IndicateIndicator; +typedef struct _IndicateIndicatorClass IndicateIndicatorClass; + +#include "server.h" + struct _IndicateIndicator { GObject parent; guint id; + IndicateServer * server; }; -typedef struct _IndicateIndicatorClass IndicateIndicatorClass; struct _IndicateIndicatorClass { GObjectClass parent_class; |