0
votes
0answers
16 views
Python subclass with c++ baseclass
I have some c++ I have exposed to python through swig. In there is a base class with a single pure virtual function.
In python, I import my module and define a class that uses the …
1
vote
1answer
11 views
Swig and Lua: how to map Lua file to FILE*
I have a C function that takes FILE* as an argument and I'd like to use this function in Lua, passing Lua file. I guess I need a %typemap for this. How to write it?
(I just starte …
0
votes
0answers
24 views
Pointers to members in swig (or Boost::Python)
Hello,
I made some bindings from my C++ app for python.
The problem is that I use pointers to members (It's for computing shortest path and giving the property to minimize as par …
0
votes
1answer
6 views
SWIG crashes on AIX (with python, and probably everything else SWIG support)
SWIG compiles and install easily on AIX. Unfortunately, a simple SWIG hello world (which also compiles - but not so easily) crashes with Segmentation Fault or Illegal Instruction ( …
0
votes
4answers
79 views
Creating Windows DLL from C++ source files
I have multiple source files in C++ using which i want to create a Dynamic link library.
I see this happening in linux with gcc -shared and ln
however for Windows i suppose i wo …
2
votes
2answers
48 views
wxlua bindings does not work with my shaderobjects made using SWIG
Hi,
I made a class using wxwdigets
//wrapper over wxIPV4address
class IPV4addressLua : public wxIPV4address
{
public:
IPV4addressLua();
~IPV4addr …
0
votes
0answers
12 views
Using Ruby Blocks from C with SWIG
I am using SWIG to wrap a C interface in Ruby. Given two structs
typedef struct Vertex {
int color, discoverd, finished;
struct Vertex *next;
} Vertex;
typedef struct Graph { …
1
vote
1answer
89 views
Access violation on run function from dll
I have DLL, interface on C++ for work with he. In bcb, msvc it works fine. I want to use Python-scripts to access function in this library.
Generate python-package using Swig.
Fil …
0
votes
1answer
33 views
Wrapping C structs with SWIG
I have C header file containing the following type definition:
// example.h
typedef struct Vertex {
int color;
} Vertex;
I try to wrap this struct with SWIG, but apparently I …
1
vote
5answers
170 views
Swig C++ Lua Pass class by reference
I don't know why I'm having the damndest time with this. All I want to do is this:
class foo {
public:
foo(){}
~foo(){}
float a,b;
};
class foo2 {
public:
foo2 …
0
votes
1answer
55 views
Generating SWIG bindings with CMake
How would I generate automatic bindings for a C project that is built using CMake?
I want to generate bindings for Python, Java, .NET, PHP, Perl, TCL, Ruby and Octave automaticall …
8
votes
7answers
676 views
Prototyping hybrid Python code
I have been mulling over writing a peak fitting library for a while. I know Python fairly well and plan on implementing everything in Python to begin with but envisage that I may h …
0
votes
3answers
92 views
SWIG pointers and Java arrays
The SWIG documentation explains how a variety of input types in C, like this:
void spam1(Foo *x); // Pass by pointer
void spam2(Foo &x); // Pass by reference
void sp …
1
vote
1answer
29 views
Using SWIG with a build system
Anyone have experience with using SWIG (the interface generator)?
I have a C project which I would like to expose to a bunch of other languages/frameworks, like Python, Java, .NE …
0
votes
0answers
28 views
Embed Python in NI CVI(LabWindows)
I need to access LabWindows API and/or fucntions written in labwindows from Python.
My approach so far
I have been able to do so in Visual studio using SWIG to some extent, but my …
