Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
76 views
in Technique[技术] by (71.8m points)

android - is it possible to add base class for a swig proxy class (c++ -> Java)

I have simple cpp class

A {
public: 
    void foo();
};

and A.i

%module TestA
%{
#include "A.hxx"
%}

%include "A.hxx"

after swig -c++ -java A.i swig generates proxy java class A public class A { private transient long swigCPtr; ...}

Question: Is it possible to add some base Java class for class A and generate some additional methods with custom logic which can be platform dependent? Thanks for help

question from:https://stackoverflow.com/questions/65646834/is-it-possible-to-add-base-class-for-a-swig-proxy-class-c-java

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...