Basic SWIG C++ use for Java
- by duckworthd
I've programmed a couple years in both C++ and Java, but I've finally come to a point where I need to bring a little unification between the two -- ideally, using SWIG. I've written a tiny and fairly pointless little class called Example:
#include <stdio.h>
class Example {
public:
Example();
~Example();
int test();
};
#include…