summaryrefslogtreecommitdiff
path: root/Examples/test-suite/packageoption_c.i
blob: f43e470020987ac175ae9d5c33dec890564570a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%module(package="PackageC") "packageoption_c";

%import "packageoption_a.i"

%inline %{
#include "packageoption.h"

struct Derived : Base {
  virtual int vmethod() { return 2; }
  virtual ~Derived() {}
};

%}