git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4324 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
219 B
C++
12 lines
219 B
C++
/* -*- C++ -*- */
|
|
/* File : example.i -- stolen from the guile std_vector example */
|
|
%module example
|
|
|
|
%{
|
|
#include "example.h"
|
|
%}
|
|
|
|
%include stl.i
|
|
|
|
/* Let's just grab the original header file here */
|
|
%include "example.h"
|