An answer to my question
https://stackoverflow.com/questions/5477747/cant-figure-out-how-to-make-swig-java-force-a-proxy-class-to-implement-an-inter
On 5 November 2014 17:28, Witold E Wolski wrote:
> I have some C++ classes which implement an interface.
>
> On the C++ side I have:
>
> struct Bl
I have some C++ classes which implement an interface.
On the C++ side I have:
struct Block{
void waitForNotify()=0;
}
class B : Listener{
void waitForNotify();
...
}
what I would love to get generated on the java side is:
interface Block{
void notifiy();
}
class B implements Block{
swig ge