swig/Examples/test-suite/packageoption_c.i
2009-04-11 16:46:47 +00:00

13 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() {}
};
%}