summaryrefslogtreecommitdiff
path: root/Examples/javascript/template/example.i
blob: 8f94c4da13204ecea9f6d831b3348ce8ce95ac47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* File : example.i */
%module example

%{
#include "example.h"
%}

/* Let's just grab the original header file here */
%include "example.h"

/* Now instantiate some specific template declarations */

%template(maxint) max<int>;
%template(maxdouble) max<double>;
%template(vecint) vector<int>;
%template(vecdouble) vector<double>;