Check in patch #5709: Augmented Balanced Tree data structure.
[pspp-builds.git] / src / ui / gui / psppire-object.h
1 /*
2     PSPPIRE --- A Graphical User Interface for PSPP
3     Copyright (C) 2004  Free Software Foundation
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (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
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18     02110-1301, USA. */
19
20
21 #ifndef __PSPPIRE_OBJECT_H__
22 #define __PSPPIRE_OBJECT_H__
23
24 #include <glib-object.h>
25 #include <glib.h>
26
27 G_BEGIN_DECLS
28
29
30 /* --- type macros --- */
31 #define G_TYPE_PSPPIRE_OBJECT              (psppire_object_get_type ())
32 #define PSPPIRE_OBJECT(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_PSPPIRE_OBJECT, PsppireObject))
33 #define PSPPIRE_OBJECT_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_PSPPIRE_OBJECT, PsppireObjectClass))
34 #define G_IS_PSPPIRE_OBJECT(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_PSPPIRE_OBJECT))
35 #define G_IS_PSPPIRE_OBJECT_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_PSPPIRE_OBJECT))
36 #define PSPPIRE_OBJECT_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_PSPPIRE_OBJECT, PsppireObjectClass))
37
38
39
40 /* --- typedefs & structures --- */
41 typedef struct _PsppireObject      PsppireObject;
42 typedef struct _PsppireObjectClass PsppireObjectClass;
43
44
45 struct _PsppireObject
46 {
47   GObject             parent;
48 };
49
50 struct _PsppireObjectClass
51 {
52   GObjectClass parent_class;
53
54 };
55
56
57 /* -- PsppireObject --- */
58 GType          psppire_object_get_type (void);
59 PsppireObject*      psppire_object_new (void);
60
61 G_END_DECLS
62
63 #endif /* __PSPPIRE_OBJECT_H__ */