1 /*
2  Author: Michael Droettboom
3          mdroe@stsci.edu
4 */
5 
6 #ifndef __WCSLIB_WTBARR_WRAP_H__
7 #define __WCSLIB_WTBARR_WRAP_H__
8 
9 #include "pyutil.h"
10 #include "wcs.h"
11 
12 extern PyTypeObject PyWtbarrType;
13 
14 typedef struct {
15   PyObject_HEAD
16   struct wtbarr* x;
17   PyObject* owner;
18 } PyWtbarr;
19 
20 PyWtbarr*
21 PyWtbarr_cnew(PyObject* wcsprm, struct wtbarr* x);
22 
23 int _setup_wtbarr_type(PyObject* m);
24 
25 #endif
26