Various bug fixes
[platform/upstream/at-spi2-core.git] / atspi / atspi-application.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001, 2002 Sun Microsystems Inc.,
6  * Copyright 2001, 2002 Ximian, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include "atspi-private.h"
25
26 G_DEFINE_TYPE (AtspiApplication, atspi_application, G_TYPE_OBJECT)
27
28 static void
29 atspi_application_init (AtspiApplication *application)
30 {
31 }
32
33 static void
34 atspi_application_finalize (AtspiApplication *application)
35 {
36   if (application->bus_name)
37     g_free (application->bus_name);
38 }
39
40 static void
41 atspi_application_class_init (AtspiApplicationClass *klass)
42 {
43   GObjectClass *object_class = G_OBJECT_CLASS (klass);
44
45   object_class->finalize = atspi_application_finalize;
46 }
47
48 AtspiApplication *
49 _atspi_application_new (const gchar *bus_name)
50 {
51   AtspiApplication *application;
52   
53   application = g_object_new (ATSPI_TYPE_APPLICATION, NULL);
54   if (application)
55     application->bus_name = g_strdup (bus_name);
56   return application;
57 }