std::string and std::wstring example.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4324 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Art Yerkes 2003-02-16 13:32:08 +00:00
commit 277a7e01e8
5 changed files with 106 additions and 0 deletions

View file

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