summaryrefslogtreecommitdiff
path: root/Examples/python/java/example.i
blob: 80e08870f8082c018aadb5c1325870aec32bd882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%module example
%include <cni.i>

%{
#include "Example.h"
%}


%include Example.h

%extend Example {
  ~Example() {}
}