upgrading copyright year from 2015 to 2016
[hkl.git] / hkl / hkl-types.h
blob91284f832ee0eda68a9b500c1a685999e4a7e9ae
1 /* This file is part of the hkl library.
3 * The hkl library is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
8 * The hkl library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with the hkl library. If not, see <http://www.gnu.org/licenses/>.
16 * Copyright (C) 2003-2016 Synchrotron SOLEIL
17 * L'Orme des Merisiers Saint-Aubin
18 * BP 48 91192 GIF-sur-YVETTE CEDEX
20 * Authors: Picca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>
22 #ifndef __HKL_GLIB_H__
23 #define __HKL_GLIB_H__
25 #include <glib-object.h> // for GType
26 #include "hkl.h" // for HKLAPI
28 G_BEGIN_DECLS
30 #define TYPE_HKL_DETECTOR (hkl_detector_get_type ())
31 HKLAPI GType hkl_detector_get_type (void) G_GNUC_CONST;
33 #define TYPE_HKL_ENGINE (hkl_engine_get_type ())
34 HKLAPI GType hkl_engine_get_type (void) G_GNUC_CONST;
36 #define TYPE_HKL_ENGINE_LIST (hkl_engine_list_get_type ())
37 HKLAPI GType hkl_engine_list_get_type (void) G_GNUC_CONST;
39 #define TYPE_HKL_FACTORY (hkl_factory_get_type ())
40 HKLAPI GType hkl_factory_get_type (void) G_GNUC_CONST;
42 #define TYPE_HKL_GEOMETRY (hkl_geometry_get_type ())
43 HKLAPI GType hkl_geometry_get_type (void) G_GNUC_CONST;
45 #define TYPE_HKL_GEOMETRY_LIST (hkl_geometry_list_get_type ())
46 HKLAPI GType hkl_geometry_list_get_type (void) G_GNUC_CONST;
48 #define TYPE_HKL_GEOMETRY_LIST_ITEM (hkl_geometry_list_item_get_type ())
49 HKLAPI GType hkl_geometry_list_item_get_type (void) G_GNUC_CONST;
51 #define TYPE_HKL_LATTICE (hkl_lattice_get_type ())
52 HKLAPI GType hkl_lattice_get_type (void) G_GNUC_CONST;
54 #define TYPE_HKL_MATRIX (hkl_matrix_get_type ())
55 HKLAPI GType hkl_matrix_get_type (void) G_GNUC_CONST;
57 #define TYPE_HKL_PARAMETER (hkl_parameter_get_type ())
58 HKLAPI GType hkl_parameter_get_type (void) G_GNUC_CONST;
60 #define TYPE_HKL_SAMPLE_REFLECTION (hkl_sample_reflection_get_type ())
61 HKLAPI GType hkl_sample_reflection_get_type (void) G_GNUC_CONST;
63 #define TYPE_HKL_SAMPLE (hkl_sample_get_type ())
64 HKLAPI GType hkl_sample_get_type (void) G_GNUC_CONST;
66 #define TYPE_HKL_UNIT (hkl_unit_get_type ())
67 HKLAPI GType hkl_unit_get_type (void) G_GNUC_CONST;
69 #define TYPE_HKL_VECTOR (hkl_vector_get_type ())
70 HKLAPI GType hkl_vector_get_type (void) G_GNUC_CONST;
72 G_END_DECLS
74 #endif