diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-12 20:05:14 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-13 19:37:15 +0800 |
commit | 4c0ea57b6d3a4c77a27326c83ebaaffec194dd18 (patch) | |
tree | ef83fea5c62ce6dc454d1e4bc0b73b985e680c52 /libempathy-gtk/empathy-notify-manager.h | |
parent | e02025bf48c753213d2a5af7cc2c38823f2d13dc (diff) | |
download | gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.gz gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.bz2 gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.lz gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.xz gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.zst gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.zip |
add stub EmpathyNotifyManager (#601691)
Diffstat (limited to 'libempathy-gtk/empathy-notify-manager.h')
-rw-r--r-- | libempathy-gtk/empathy-notify-manager.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-notify-manager.h b/libempathy-gtk/empathy-notify-manager.h new file mode 100644 index 000000000..dff4238df --- /dev/null +++ b/libempathy-gtk/empathy-notify-manager.h @@ -0,0 +1,56 @@ +/* + * Copyright (C) 2009 Collabora Ltd. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Authors: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> + */ + +#ifndef __EMPATHY_NOTIFY_MANAGER_H__ +#define __EMPATHY_NOTIFY_MANAGER_H__ + +#include <glib-object.h> + +G_BEGIN_DECLS + +#define EMPATHY_TYPE_NOTIFY_MANAGER (empathy_notify_manager_get_type ()) +#define EMPATHY_NOTIFY_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManager)) +#define EMPATHY_NOTIFY_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass)) +#define EMPATHY_IS_NOTIFY_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_NOTIFY_MANAGER)) +#define EMPATHY_IS_NOTIFY_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_NOTIFY_MANAGER)) +#define EMPATHY_NOTIFY_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass)) + +typedef struct _EmpathyNotifyManager EmpathyNotifyManager; +typedef struct _EmpathyNotifyManagerClass EmpathyNotifyManagerClass; + +struct _EmpathyNotifyManager +{ + GObject parent; + gpointer priv; +}; + +struct _EmpathyNotifyManagerClass +{ + GObjectClass parent_class; +}; + +GType empathy_notify_manager_get_type (void) G_GNUC_CONST; + +/* Get the notify_manager singleton */ +EmpathyNotifyManager * empathy_notify_manager_dup_singleton (void); + +G_END_DECLS + +#endif /* __EMPATHY_NOTIFY_MANAGER_H__ */ |