git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@12945 626c5289-ae23-0410-ae9c-e8d60b6d4f22
13 lines
189 B
OpenEdge ABL
13 lines
189 B
OpenEdge ABL
/* File : example.i */
|
|
%module example
|
|
|
|
%{
|
|
#include "example.hxx"
|
|
%}
|
|
|
|
%include "std_vector.i"
|
|
namespace std {
|
|
%template(nlopt_doublevector) vector<double>;
|
|
};
|
|
|
|
%include "example.hxx";
|