All test cases work.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4868 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Art Yerkes 2003-06-06 04:29:38 +00:00
commit 0f445779b9

View file

@ -131,8 +131,7 @@ namespace std {
}
}
%template (StringVector) std::vector<string >;
#ifdef ENABLE_CHARPTR_ARRAY
char **c_charptr_array( const std::vector <string > &str_v );
%{
@ -145,6 +144,10 @@ char **c_charptr_array( const std::vector <string > &str_v );
return out;
}
%}
#endif
#ifdef ENABLE_STRING_VECTOR
%template (StringVector) std::vector<string >;
%insert(ml) %{
(* Some STL convenience items *)
@ -160,3 +163,4 @@ char **c_charptr_array( const std::vector <string > &str_v );
%insert(mli) %{
val c_string_array: string array -> c_obj
%}
#endif