diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-07 00:46:14 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-07 00:46:14 +0800 |
commit | e6a4bdc9a96edaad3b6aab6e423248af74cf9ce8 (patch) | |
tree | e3e73c72322c4501ac184139108da013620ea110 /libempathy/empathy-account-manager.h | |
parent | 3d889ffd601e614682577a8e6664c6656dce6764 (diff) | |
download | gsoc2013-empathy-e6a4bdc9a96edaad3b6aab6e423248af74cf9ce8.tar gsoc2013-empathy-e6a4bdc9a96edaad3b6aab6e423248af74cf9ce8.tar.gz gsoc2013-empathy-e6a4bdc9a96edaad3b6aab6e423248af74cf9ce8.tar.bz2 gsoc2013-empathy-e6a4bdc9a96edaad3b6aab6e423248af74cf9ce8.tar.lz gsoc2013-empathy-e6a4bdc9a96edaad3b6aab6e423248af74cf9ce8.tar.xz gsoc2013-empathy-e6a4bdc9a96edaad3b6aab6e423248af74cf9ce8.tar.zst gsoc2013-empathy-e6a4bdc9a96edaad3b6aab6e423248af74cf9ce8.zip |
Add EmpathyAccountManager.
svn path=/trunk/; revision=2029
Diffstat (limited to 'libempathy/empathy-account-manager.h')
-rw-r--r-- | libempathy/empathy-account-manager.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/libempathy/empathy-account-manager.h b/libempathy/empathy-account-manager.h new file mode 100644 index 000000000..36b77c7e5 --- /dev/null +++ b/libempathy/empathy-account-manager.h @@ -0,0 +1,53 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Copyright (C) 2008 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: Cosimo Cecchi <cosimo.cecchi@collabora.co.uk> + */ + +#ifndef __EMPATHY_ACCOUNT_MANAGER_H__ +#define __EMPATHY_ACCOUNT_MANAGER_H__ + +#include <glib-object.h> + +G_BEGIN_DECLS + +#define EMPATHY_TYPE_ACCOUNT_MANAGER (empathy_account_manager_get_type ()) +#define EMPATHY_ACCOUNT_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_ACCOUNT_MANAGER, EmpathyAccountManager)) +#define EMPATHY_ACCOUNT_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_ACCOUNT_MANAGER, EmpathyAccountManagerClass)) +#define EMPATHY_IS_ACCOUNT_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_ACCOUNT_MANAGER)) +#define EMPATHY_IS_ACCOUNT_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_ACCOUNT_MANAGER)) +#define EMPATHY_ACCOUNT_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_ACCOUNT_MANAGER, EmpathyAccountManagerClass)) + +typedef struct _EmpathyAccountManager EmpathyAccountManager; +typedef struct _EmpathyAccountManagerClass EmpathyAccountManagerClass; + +struct _EmpathyAccountManager { + GObject parent; + gpointer priv; +}; + +struct _EmpathyAccountManagerClass { + GObjectClass parent_class; +}; + +GType empathy_account_manager_get_type (void); +EmpathyAccountManager * empathy_account_manager_new (void); + +G_END_DECLS + +#endif /* __EMPATHY_ACCOUNT_MANAGER_H__ */
\ No newline at end of file |