Removed po directory from Makefile.am for now.
[platform/core/uifw/at-spi2-atk.git] / libspi / relation.h
1 /* AT-SPI -  Assistive Technology Service Provider Interface
2  *
3  * Copyright 2001 Sun Microsystems Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library 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  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef SPI_RELATION_H_
22 #define SPI_RELATION_H_
23
24 #include <libspi/base.h>
25 #include <atk/atkrelation.h>
26
27 G_BEGIN_DECLS
28
29 #define SPI_RELATION_TYPE            (spi_relation_get_type ())
30 #define SPI_RELATION(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), SPI_RELATION_TYPE, SpiRelation))
31 #define SPI_RELATION_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass), SPI_RELATION_TYPE, SpiRelationClass))
32 #define SPI_IS_RELATION(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SPI_RELATION_TYPE))
33 #define SPI_IS_RELATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SPI_RELATION_TYPE))
34
35 typedef struct _SpiRelation SpiRelation;
36 typedef struct _SpiRelationClass SpiRelationClass;
37
38 struct _SpiRelation {
39   SpiBase parent;
40 };
41
42 struct _SpiRelationClass {
43   SpiBaseClass parent_class;
44   POA_Accessibility_Relation__epv epv;
45 };
46
47 GType        spi_relation_get_type (void);
48 SpiRelation *spi_relation_new      (AtkRelation *relation);
49
50 G_END_DECLS
51
52 #endif /* SPI_RELATION_H_ */