summaryrefslogtreecommitdiff
path: root/atspi/atspi-application.c
diff options
context:
space:
mode:
authorMike Gorse <mgorse@novell.com>2010-10-27 12:37:53 -0400
committerMike Gorse <mgorse@novell.com>2010-10-27 12:37:53 -0400
commit5544649ae7afb697e59ca8e9c2b8694f2a8dea39 (patch)
tree1b78b6e739ba180aa8de36a7b7f3af571a6adb2f /atspi/atspi-application.c
parent5ecfcf986fa6c0016d941c8bbcab4c14d21a0958 (diff)
downloadat-spi2-core-5544649ae7afb697e59ca8e9c2b8694f2a8dea39.tar.gz
Various bug fixes
Diffstat (limited to 'atspi/atspi-application.c')
-rw-r--r--atspi/atspi-application.c57
1 files changed, 57 insertions, 0 deletions
diff --git a/atspi/atspi-application.c b/atspi/atspi-application.c
new file mode 100644
index 00000000..c037c4b4
--- /dev/null
+++ b/atspi/atspi-application.c
@@ -0,0 +1,57 @@
+/*
+ * AT-SPI - Assistive Technology Service Provider Interface
+ * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
+ *
+ * Copyright 2001, 2002 Sun Microsystems Inc.,
+ * Copyright 2001, 2002 Ximian, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 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
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include "atspi-private.h"
+
+G_DEFINE_TYPE (AtspiApplication, atspi_application, G_TYPE_OBJECT)
+
+static void
+atspi_application_init (AtspiApplication *application)
+{
+}
+
+static void
+atspi_application_finalize (AtspiApplication *application)
+{
+ if (application->bus_name)
+ g_free (application->bus_name);
+}
+
+static void
+atspi_application_class_init (AtspiApplicationClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ object_class->finalize = atspi_application_finalize;
+}
+
+AtspiApplication *
+_atspi_application_new (const gchar *bus_name)
+{
+ AtspiApplication *application;
+
+ application = g_object_new (ATSPI_TYPE_APPLICATION, NULL);
+ if (application)
+ application->bus_name = g_strdup (bus_name);
+ return application;
+}