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 Lesser General Public
10
 * License as published by the Free Software Foundation; either
11
 * version 2.1 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
 * Lesser General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU Lesser General Public
19
 * License along with this library; if not, write to the
20
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21
 * Boston, MA 02110-1301, USA.
22
 */
23

            
24
#include "atspi-private.h"
25

            
26
2
G_DEFINE_TYPE (AtspiObject, atspi_object, G_TYPE_OBJECT)
27

            
28
static void
29
1619
atspi_object_init (AtspiObject *obj)
30
{
31
1619
}
32

            
33
static void
34
3233
atspi_object_dispose (GObject *object)
35
{
36
3233
  AtspiObject *aobj = ATSPI_OBJECT (object);
37

            
38
3233
  if (aobj->app)
39
    {
40
1295
      g_object_unref (aobj->app);
41
1295
      aobj->app = NULL;
42
    }
43

            
44
3233
  G_OBJECT_CLASS (atspi_object_parent_class)->dispose (object);
45
3233
}
46

            
47
static void
48
1614
atspi_object_finalize (GObject *object)
49
{
50
1614
  AtspiObject *aobj = ATSPI_OBJECT (object);
51

            
52
1614
  g_free (aobj->path);
53

            
54
1614
  G_OBJECT_CLASS (atspi_object_parent_class)->finalize (object);
55
1614
}
56

            
57
static void
58
2
atspi_object_class_init (AtspiObjectClass *klass)
59
{
60
2
  GObjectClass *object_class = G_OBJECT_CLASS (klass);
61

            
62
2
  object_class->dispose = atspi_object_dispose;
63
2
  object_class->finalize = atspi_object_finalize;
64
2
}