RAVE
pycartesiancomposite.h
Go to the documentation of this file.
1/* --------------------------------------------------------------------
2Copyright (C) 2009 Swedish Meteorological and Hydrological Institute, SMHI,
3
4This file is part of RAVE.
5
6RAVE is free software: you can redistribute it and/or modify
7it under the terms of the GNU Lesser General Public License as published by
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
10
11RAVE is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU Lesser General Public License for more details.
15
16You should have received a copy of the GNU Lesser General Public License
17along with RAVE. If not, see <http://www.gnu.org/licenses/>.
18------------------------------------------------------------------------*/
25#ifndef PYCARTESIANCOMPOSITE_H
26#define PYCARTESIANCOMPOSITE_H
27#include "cartesiancomposite.h"
28
32typedef struct {
33 PyObject_HEAD /*Always has to be on top*/
36
37#define PyCartesianComposite_Type_NUM 0
39#define PyCartesianComposite_GetNative_NUM 1
40#define PyCartesianComposite_GetNative_RETURN CartesianComposite_t*
41#define PyCartesianComposite_GetNative_PROTO (PyCartesianComposite*)
43#define PyCartesianComposite_New_NUM 2
44#define PyCartesianComposite_New_RETURN PyCartesianComposite*
45#define PyCartesianComposite_New_PROTO (CartesianComposite_t*)
47#define PyCartesianComposite_API_pointers 3
49#define PyCartesianComposite_CAPSULE_NAME "_cartesiancomposite._C_API"
50
51#ifdef PYCARTESIANCOMPOSITE_MODULE
53extern PyTypeObject PyCartesianComposite_Type;
54
56#define PyCartesianComposite_Check(op) ((op)->ob_type == &PyCartesianComposite_Type)
57
60
63
64#else
66static void **PyCartesianComposite_API;
67
72#define PyCartesianComposite_GetNative \
73 (*(PyCartesianComposite_GetNative_RETURN (*)PyCartesianComposite_GetNative_PROTO) PyCartesianComposite_API[PyCartesianComposite_GetNative_NUM])
74
82#define PyCartesianComposite_New \
83 (*(PyCartesianComposite_New_RETURN (*)PyCartesianComposite_New_PROTO) PyCartesianComposite_API[PyCartesianComposite_New_NUM])
84
88#define PyCartesianComposite_Check(op) \
89 (Py_TYPE(op) == &PyCartesianComposite_Type)
90
91#define PyCartesianComposite_Type (*(PyTypeObject*)PyCartesianComposite_API[PyCartesianComposite_Type_NUM])
92
96#define import_pycartesiancomposite() \
97 PyCartesianComposite_API = (void **)PyCapsule_Import(PyCartesianComposite_CAPSULE_NAME, 1);
98
99#endif
100
101
102
103#endif /* PYCARTESIANCOMPOSITE_H_ */
Defines the functions available when creating composites from cartesian products.
#define PyCartesianComposite_New
Creates a new cartesian instance.
Definition pycartesiancomposite.h:82
#define PyCartesianComposite_New_PROTO
arguments for New
Definition pycartesiancomposite.h:45
#define PyCartesianComposite_GetNative_PROTO
arguments for GetNative
Definition pycartesiancomposite.h:41
#define PyCartesianComposite_GetNative_RETURN
return type for GetNative
Definition pycartesiancomposite.h:40
#define PyCartesianComposite_New_RETURN
return type for New
Definition pycartesiancomposite.h:44
#define PyCartesianComposite_GetNative
Returns a pointer to the internal cartesian, remember to release the reference when done with the obj...
Definition pycartesiancomposite.h:72
A cartesian product.
Definition pycartesiancomposite.h:32
PyObject_HEAD CartesianComposite_t * generator
the cartesian composite generator
Definition pycartesiancomposite.h:34
Represents the cartesian composite generator.
Definition cartesiancomposite.c:40