diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-02-03 16:09:16 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-02-03 16:09:16 +0000 |
commit | 513679bbf8169e69a6d78aa924c4f5b034c818b2 (patch) | |
tree | a99c6b0f9d3573b5ad71cc029b48b16feac55003 /src/active-sink.h | |
parent | 04a43bec0a144a9c7ed682471c438c499df41d1b (diff) | |
download | ayatana-indicator-sound-513679bbf8169e69a6d78aa924c4f5b034c818b2.tar.gz ayatana-indicator-sound-513679bbf8169e69a6d78aa924c4f5b034c818b2.tar.bz2 ayatana-indicator-sound-513679bbf8169e69a6d78aa924c4f5b034c818b2.zip |
starting to make sense
Diffstat (limited to 'src/active-sink.h')
-rw-r--r-- | src/active-sink.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/active-sink.h b/src/active-sink.h new file mode 100644 index 0000000..240f43e --- /dev/null +++ b/src/active-sink.h @@ -0,0 +1,54 @@ +/* + * Copyright 2010 Canonical Ltd. + * + * Authors: + * Conor Curran <conor.curran@canonical.com> + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 3, as published + * by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranties of + * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef __ACTIVE_SINK_H__ +#define __ACTIVE_SINK_H__ + +#include <glib.h> +#include <glib-object.h> +#include <libdbusmenu-glib/menuitem.h> +#include "common-defs.h" + + +G_BEGIN_DECLS + +#define ACTIVE_SINK_TYPE (active_sink_get_type ()) +#define ACTIVE_SINK(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ACTIVE_SINK_TYPE, ActiveSink)) +#define ACTIVE_SINK_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), ACTIVE_SINK_TYPE, ActiveSinkClass)) +#define IS_ACTIVE_SINK(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), ACTIVE_SINK_TYPE)) +#define IS_ACTIVE_SINK_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ACTIVE_SINK_TYPE)) +#define ACTIVE_SINK_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), ACTIVE_SINK_TYPE, ActiveSinkClass)) + +typedef struct _ActiveSink ActiveSink; +typedef struct _ActiveSinkClass ActiveSinkClass; + + +struct _ActiveSink { + GObject parent; +}; + +struct _ActiveSinkClass { + GObjectClass parent_class; +}; + +GType active_sink_get_type (void) G_GNUC_CONST; + +G_END_DECLS + +#endif |