swig/Examples/test-suite/packageoption_c.i

14 lines
209 B
OpenEdge ABL

%module(package="PackageC") "packageoption_c";
%import "packageoption_a.i"
%inline %{
#include "packageoption.h"
struct Derived : Base {
virtual int vmethod() { return 2; }
virtual ~Derived() {}
};
%}