Skip to content Skip to sidebar Skip to footer
Showing posts with the label Swig

How To Get Python Slicing To Work With My C++ Array Class Using Swig

I have an an array class, Array1D, defined in c++ which essentially wraps the STL vector class. I e… Read more How To Get Python Slicing To Work With My C++ Array Class Using Swig

Is It Necessary To Mention All Functions Of The Wrapped .c File In The Interface File Using Swig?

I try to wrap several .c files to make the accessible via Python. If I want to access all functions… Read more Is It Necessary To Mention All Functions Of The Wrapped .c File In The Interface File Using Swig?

A Trivial Python Swig Error Question

I am trying to get Python running with swig to do C/C++. I am running the tutorial here, 'buil… Read more A Trivial Python Swig Error Question

How To Expose Std::vector As A Python List Using Swig?

I'm trying to expose this function to Python using SWIG: std::vector get_match_stats(); And I… Read more How To Expose Std::vector As A Python List Using Swig?

Running A Swig Bound Python+c Program Gives A Missing Dll Error When Running On Another Computer

So I have compiled a small testing program that uses SWIG as a bridge between python and C. The mai… Read more Running A Swig Bound Python+c Program Gives A Missing Dll Error When Running On Another Computer

Swig Cannot Convert Typedef Type Correct

I'm using SWIT to convert a vc project to python. I found when a struct has a member which type… Read more Swig Cannot Convert Typedef Type Correct

Swig No Module Named _example

I cannot reproduce the basic SWIG example on windows. My error is stated in the SWIG docs and I am … Read more Swig No Module Named _example

Swig Function With Pointer Struct

Im new using SWIG to wrapped C shared library. I have problem to call a C function with Struct poin… Read more Swig Function With Pointer Struct