summaryrefslogtreecommitdiff
path: root/trunk/Examples/python/std_vector/example.i
blob: aa58b66e0b1f6570a1ef62e7f2195eda22b27b5f (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"
%}

%include stl.i
/* instantiate the required template specializations */
namespace std {
    %template(IntVector)    vector<int>;
    %template(DoubleVector) vector<double>;
}

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