-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathnc_cbe_precision.h
More file actions
71 lines (58 loc) · 2.5 KB
/
Copy pathnc_cbe_precision.h
File metadata and controls
71 lines (58 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/***************************************************************************
* nc_cbe_precision.h
*
* Sun October 25 20:45:31 2015
* Copyright 2015 Sandro Dias Pinto Vitenti
****************************************************************************/
/*
* nc_cbe_precision.h
* Copyright (C) 2015 Sandro Dias Pinto Vitenti <[email protected]>
*
* numcosmo is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* numcosmo is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _NC_CBE_PRECISION_H_
#define _NC_CBE_PRECISION_H_
#include <glib.h>
#include <glib-object.h>
#include <numcosmo/build_cfg.h>
G_BEGIN_DECLS
#define NC_TYPE_CBE_PRECISION (nc_cbe_precision_get_type ())
#define NC_CBE_PRECISION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NC_TYPE_CBE_PRECISION, NcCBEPrecision))
#define NC_CBE_PRECISION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NC_TYPE_CBE_PRECISION, NcCBEPrecisionClass))
#define NC_IS_CBE_PRECISION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NC_TYPE_CBE_PRECISION))
#define NC_IS_CBE_PRECISION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NC_TYPE_CBE_PRECISION))
#define NC_CBE_PRECISION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NC_TYPE_CBE_PRECISION, NcCBEPrecisionClass))
typedef struct _NcCBEPrecisionClass NcCBEPrecisionClass;
typedef struct _NcCBEPrecision NcCBEPrecision;
typedef struct _NcCBEPrecisionPrivate NcCBEPrecisionPrivate;
struct _NcCBEPrecisionClass
{
/*< private >*/
GObjectClass parent_class;
};
struct _NcCBEPrecision
{
/*< private >*/
GObject parent_instance;
NcCBEPrecisionPrivate *priv;
};
GType nc_cbe_precision_get_type (void) G_GNUC_CONST;
NcCBEPrecision *nc_cbe_precision_ref (NcCBEPrecision *cbe_prec);
NcCBEPrecision *nc_cbe_precision_new (void);
void nc_cbe_precision_free (NcCBEPrecision *cbe_prec);
void nc_cbe_precision_clear (NcCBEPrecision **cbe_prec);
void nc_cbe_precision_assert_default (NcCBEPrecision *cbe_prec);
G_END_DECLS
#endif /* _NC_CBE_PRECISION_H_ */