ISCE_INSAR/components/isceobj/Sensor/include/cosarmodule.h

19 lines
317 B
C
Raw Normal View History

2019-01-16 19:40:08 +00:00
#ifndef cosarmodule_h
#define cosarmodule_h
#include <Python.h>
#include "Cosar.hh"
extern "C"
{
PyObject *cosar_C(PyObject *self,PyObject *args);
}
static PyMethodDef cosar_methods[] =
{
{"cosar_Py",cosar_C,METH_VARARGS," "},
{NULL,NULL,0,NULL}
};
#endif //cosarmodule_h