~ubuntu-branches/ubuntu/trusty/gobject-introspection/trusty

« back to all changes in this revision

Viewing changes to girepository/giunioninfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2011-03-22 00:32:36 UTC
  • mfrom: (1.4.1 upstream) (3.3.33 multiarch)
  • Revision ID: james.westby@ubuntu.com-20110322003236-4spdgfk1vai6xay1
Tags: 0.10.4-2
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GObject introspection: Union
 
2
 *
 
3
 * Copyright (C) 2005 Matthias Clasen
 
4
 * Copyright (C) 2008,2009 Red Hat, Inc.
 
5
 *
 
6
 * This library is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Lesser General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2 of the License, or (at your option) any later version.
 
10
 *
 
11
 * This library is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public
 
17
 * License along with this library; if not, write to the
 
18
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
19
 * Boston, MA 02111-1307, USA.
 
20
 */
 
21
 
 
22
#ifndef __GIUNIONINFO_H__
 
23
#define __GIUNIONINFO_H__
 
24
 
 
25
#if !defined (__GIREPOSITORY_H_INSIDE__) && !defined (GI_COMPILATION)
 
26
#error "Only <girepository.h> can be included directly."
 
27
#endif
 
28
 
 
29
#include <gitypes.h>
 
30
 
 
31
G_BEGIN_DECLS
 
32
 
 
33
#define GI_IS_UNION_INFO(info) \
 
34
    (g_base_info_get_type((GIBaseInfo*)info) ==  GI_INFO_TYPE_UNION)
 
35
 
 
36
gint             g_union_info_get_n_fields             (GIUnionInfo *info);
 
37
GIFieldInfo *    g_union_info_get_field                (GIUnionInfo *info,
 
38
                                                        gint         n);
 
39
gint             g_union_info_get_n_methods            (GIUnionInfo *info);
 
40
GIFunctionInfo * g_union_info_get_method               (GIUnionInfo *info,
 
41
                                                        gint         n);
 
42
gboolean         g_union_info_is_discriminated         (GIUnionInfo *info);
 
43
gint             g_union_info_get_discriminator_offset (GIUnionInfo *info);
 
44
GITypeInfo *     g_union_info_get_discriminator_type   (GIUnionInfo *info);
 
45
GIConstantInfo * g_union_info_get_discriminator        (GIUnionInfo *info,
 
46
                                                        gint         n);
 
47
GIFunctionInfo * g_union_info_find_method              (GIUnionInfo *info,
 
48
                                                        const gchar *name);
 
49
gsize            g_union_info_get_size                 (GIUnionInfo *info);
 
50
gsize            g_union_info_get_alignment            (GIUnionInfo *info);
 
51
 
 
52
G_END_DECLS
 
53
 
 
54
 
 
55
#endif  /* __GIUNIONINFO_H__ */
 
56