summaryrefslogtreecommitdiff
path: root/Examples/python/swigrun/example.cxx
blob: 25906a5598d93cdadc705508758e5f419bf37a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* File : example.cxx */

#include <Python.h>
#include "swigpyrun.h"
#include "example.h"


Manager* convert_to_Manager(PyObject *py_obj)
{
  Manager* c_ptr;
  swig_type_info *ty = SWIG_TypeQuery("Manager *");
  printf("manager ty %p \n", ty);
  if (SWIG_ConvertPtr(py_obj, (void **) &c_ptr, ty, 0) == -1) {
    c_ptr = 0;
  } else {
    Py_XINCREF(py_obj);
  }
  return c_ptr;
}