]> git.0d.be Git - empathy.git/blob - libempathy/empathy-session.c
86ac1e18038795bc53e36b6bfbbc4a9203050fcd
[empathy.git] / libempathy / empathy-session.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  * 
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #include <config.h>
24
25 #include <glib.h>
26
27 #include <libtelepathy/tp-helpers.h>
28
29 #include <libmissioncontrol/mc-account-monitor.h>
30
31 #include "empathy-session.h"
32 #include "gossip-debug.h"
33
34 #define DEBUG_DOMAIN "Session"
35
36 static EmpathyContactManager *contact_manager = NULL;
37
38 void
39 empathy_session_finalize (void)
40 {
41         if (contact_manager) {
42                 g_object_unref (contact_manager);
43                 contact_manager = NULL;
44         }
45 }
46
47 EmpathyContactManager *
48 empathy_session_get_contact_manager (void)
49 {
50         if (!contact_manager) {
51                 contact_manager = empathy_contact_manager_new ();
52         }
53
54         return contact_manager;
55 }
56