summaryrefslogtreecommitdiff
path: root/Examples/python/callback/example.i
blob: 90beda01af1a5408d94519232aee3add0c480e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* File : example.i */
%module(directors="1") example
%{
#include "example.h"
%}

%include "std_string.i"

/* turn on director wrapping Callback */
%feature("director") Callback;

%include "example.h"