Scilab: move std_vector to upper directory

This commit is contained in:
Simon Marchetto 2013-09-09 10:22:54 +02:00
commit a7181c3c93
4 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,18 @@
/* 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"