1
vote
0answers
46 views

Xamarin: Using Swig to create a C# wrapper to C, to be used in Xamarin.Android project

I'm trying to use SWIG for creating a C# wrapper to C, to be used in Xamarin.Android Project. I have a .so library (built with NDK in Eclipse Android Project as in here) and the header file. Without ...
2
votes
0answers
65 views

Export C# DLL to python (like swig)

I know swig to export a wrapper for a C/C++ to python. Is there any such a tool to export a wrapper for a C# DLL?
1
vote
1answer
122 views

Using a C++ game engine from C# using SWIG

I have recently acquired the C++ source code of a 3D game engine I plan to use. However my C++ coding skills are far from legendary, and I definitely find C# easier to work with. I have seen ...
1
vote
1answer
78 views

Is SharpGen useful for other projects than SharpDX or should I go with SWIG?

Has anyone used SharpGen (from SharpDX) for generating wrappers in other projects than SharpDX itself? I wan't to decide whether to use SharpGen or Swig to generate a wrapper for a C++ library. The ...
3
votes
2answers
357 views

C# wrapper for DCMTK library using SWIG

I want to create C# wrapper for DCMTK library (which is written in C++) using SWIG. I have full source code of DCMTK, but I have one problem I can't solve... My script for SWIG looks like this: ...
1
vote
1answer
102 views

Python object deletion detection

I am building a Python wrapper for a swig interface for a C++ program. I am interested in knowing if there is a way for a Python object to "know" how it was deleted. The idea is simple, if the object ...
0
votes
0answers
136 views

Using SWIG to create a C# wrapper for Octave

I'm looking at using Octave and its functions in my C# project, but currently the only way to interface C# and Octave is by calling it on the command line and parsing the string output. (see this SO ...
0
votes
1answer
95 views

WFDB SWIG Wrappers connection with Visual Studio c# project

i'm relatively new to the topic of wrappers and would be glad if someone could send me some tips, how could i start visual studio (C#) project which would be using wfdb library (written in C). My goal ...
4
votes
1answer
668 views

Creating a Python wrapper for my algorithm which uses Opencv 2.3

I am looking to wrap a c++ class which implements an algorithm I wrote using Opencv 2.3. I am aware that there is python wrappers for opencv as a whole but what I need is to wrap my own code which ...
4
votes
1answer
3k views

Calling Java from MATLAB

I have been using Swig to create a Java wrapper for a a library written in C++. The wrappers get generated into a package and then jar'ed. The files are compiled correctly and work perfectly with java ...
0
votes
1answer
236 views

Error on making CFFI wrapper for BWAPI library (C++) by SWIG

I'm trying to make a CFFI wrapper for BWAPI (which was written on C++ ) from http://code.google.com/p/bwapi/ ,by modifying another BWAPI-bridge (which was written on C#) ...
5
votes
1answer
914 views

C++ to C Wrapper using SWIG (for FLTK)

I need to generate wrapper to FLTK C++ classes to use it in pure C. I know, that SWIG can do that, and I know how to generate wrapper for C#, Python etc. But I do not know how to wrap C++ to C using ...
1
vote
2answers
693 views

Avoid 'nothing known about [parent] class…' error in swig

Let's say I have two classes A in header file A.h // A.h class A { public: void foo(); }; and B in header file B.h // B.h class B : public A { public: void bar() }; I want to generate a Swig ...
1
vote
1answer
235 views

Python, SWIG and other strange things

I have a firmware for an USB module I can already control by visual C. Now I want to port this to python. for this I need the octopus library which is written in c. I found a file called octopus_wrap ...
1
vote
2answers
452 views

luaopen_my_example undefined after compiling swig wrapper

I'm just now diving into SWIG as a means for creating Lua bindings, and I've hit a snag. I made my interface file and built a shared object file from it all without any problems. However, when I run ...