File: _pywt.h

package info (click to toggle)
pywavelets 1.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,680 kB
  • sloc: python: 8,849; ansic: 5,134; makefile: 93
file content (67 lines) | stat: -rw-r--r-- 1,625 bytes parent folder | download
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
/* Generated by Cython 0.29.32 */

#ifndef __PYX_HAVE__pywt___extensions___pywt
#define __PYX_HAVE__pywt___extensions___pywt

#include "Python.h"
struct WaveletObject;
struct ContinuousWaveletObject;

/* "pywt/_extensions/_pywt.pxd":26
 *     have_c99_complex = 0
 * 
 * cdef public class Wavelet [type WaveletType, object WaveletObject]:             # <<<<<<<<<<<<<<
 *     cdef wavelet.DiscreteWavelet* w
 * 
 */
struct WaveletObject {
  PyObject_HEAD
  DiscreteWavelet *w;
  PyObject *name;
  PyObject *number;
};

/* "pywt/_extensions/_pywt.pxd":32
 *     cdef readonly number
 * 
 * cdef public class ContinuousWavelet [type ContinuousWaveletType, object ContinuousWaveletObject]:             # <<<<<<<<<<<<<<
 *     cdef wavelet.ContinuousWavelet* w
 * 
 */
struct ContinuousWaveletObject {
  PyObject_HEAD
  ContinuousWavelet *w;
  PyObject *name;
  PyObject *number;
  PyObject *dt;
};

#ifndef __PYX_HAVE_API__pywt___extensions___pywt

#ifndef __PYX_EXTERN_C
  #ifdef __cplusplus
    #define __PYX_EXTERN_C extern "C"
  #else
    #define __PYX_EXTERN_C extern
  #endif
#endif

#ifndef DL_IMPORT
  #define DL_IMPORT(_T) _T
#endif

__PYX_EXTERN_C DL_IMPORT(PyTypeObject) WaveletType;
__PYX_EXTERN_C DL_IMPORT(PyTypeObject) ContinuousWaveletType;

#endif /* !__PYX_HAVE_API__pywt___extensions___pywt */

/* WARNING: the interface of the module init function changed in CPython 3.5. */
/* It now returns a PyModuleDef instance instead of a PyModule instance. */

#if PY_MAJOR_VERSION < 3
PyMODINIT_FUNC init_pywt(void);
#else
PyMODINIT_FUNC PyInit__pywt(void);
#endif

#endif /* !__PYX_HAVE__pywt___extensions___pywt */