proteus  1.8.1
C/C++/Fortran libraries
swigpyobject.h
Go to the documentation of this file.
1 #include <Python.h>
2 
3 typedef struct {
4  PyObject_HEAD
5  void *ptr; // This is the pointer to the actual C++ instance
6  void *ty; // swig_type_info originally, but shouldn't matter
7  int own;
8  PyObject *next;
SwigPyObject::ptr
PyObject_HEAD void * ptr
Definition: swigpyobject.h:5
SwigPyObject::own
int own
Definition: swigpyobject.h:7
SwigPyObject::next
PyObject * next
Definition: swigpyobject.h:8
SwigPyObject
Definition: swigpyobject.h:3
SwigPyObject::ty
void * ty
Definition: swigpyobject.h:6