~ubuntu-branches/ubuntu/maverick/empathy/maverick

« back to all changes in this revision

Viewing changes to libempathy/empathy-account-manager.h

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2009-07-16 18:34:37 UTC
  • mto: (6.4.1 sid) (1.11.1) (107.1.1 maverick)
  • mto: This revision was merged to the branch mainline in revision 58.
  • Revision ID: james.westby@ubuntu.com-20090716183437-19adf9kb5066d4xq
Tags: upstream-2.27.4
ImportĀ upstreamĀ versionĀ 2.27.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include <glib-object.h>
26
26
 
27
 
#include <libmissioncontrol/mc-account.h>
 
27
#include "empathy-account.h"
28
28
 
29
29
G_BEGIN_DECLS
30
30
 
52
52
/* public methods */
53
53
 
54
54
EmpathyAccountManager * empathy_account_manager_dup_singleton (void);
 
55
EmpathyAccount *        empathy_account_manager_create
 
56
                                (EmpathyAccountManager *manager,
 
57
                                 McProfile *profile);
55
58
int                     empathy_account_manager_get_connected_accounts
56
59
                                (EmpathyAccountManager *manager);
57
60
int                     empathy_account_manager_get_connecting_accounts
58
61
                                (EmpathyAccountManager *manager);
59
 
gboolean                empathy_account_manager_is_account_just_connected
60
 
                                (EmpathyAccountManager *manager,
61
 
                                 McAccount             *account);
62
62
int                     empathy_account_manager_get_count
63
63
                                (EmpathyAccountManager *manager);
64
 
McAccount *             empathy_account_manager_get_account
 
64
EmpathyAccount *        empathy_account_manager_get_account
65
65
                                (EmpathyAccountManager *manager,
66
66
                                 TpConnection          *connection);
 
67
EmpathyAccount *        empathy_account_manager_lookup
 
68
                                (EmpathyAccountManager *manager,
 
69
                                 const gchar *unique_name);
67
70
GList *                 empathy_account_manager_dup_accounts
68
71
                                (EmpathyAccountManager *manager);
69
 
TpConnection *          empathy_account_manager_get_connection
70
 
                                (EmpathyAccountManager *manager,
71
 
                                 McAccount             *account);
72
72
GList *                 empathy_account_manager_dup_connections
73
73
                                (EmpathyAccountManager *manager);
 
74
void                    empathy_account_manager_remove (
 
75
                                 EmpathyAccountManager *manager,
 
76
                                 EmpathyAccount *account);
74
77
 
75
78
G_END_DECLS
76
79