include the language specific codes first since they can contain typemaps

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7763 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-10-31 09:47:41 +00:00
commit f88acef831
9 changed files with 56 additions and 57 deletions

View file

@ -84,13 +84,13 @@ namespace std {
}
%typemap_traits_ptr(SWIG_TYPECHECK_VECTOR, std::vector<_Tp, _Alloc >);
%std_vector_methods(vector);
#ifdef %swig_vector_methods
// Add swig/language extra methods
%swig_vector_methods(std::vector<_Tp, _Alloc >);
#endif
%std_vector_methods(vector);
};
// ***
@ -126,12 +126,12 @@ namespace std {
%typemap_traits_ptr(SWIG_TYPECHECK_VECTOR, std::vector<_Tp*, _Alloc >);
%std_vector_methods_val(vector);
#ifdef %swig_vector_methods_val
// Add swig/language extra methods
%swig_vector_methods_val(std::vector<_Tp*, _Alloc >);
#endif
%std_vector_methods_val(vector);
};
// ***
@ -167,16 +167,18 @@ namespace std {
%typemap_traits_ptr(SWIG_TYPECHECK_VECTOR, std::vector<bool, _Alloc >);
#ifdef %swig_vector_methods_val
// Add swig/language extra methods
%swig_vector_methods_val(std::vector<bool, _Alloc >);
#endif
%std_vector_methods_val(vector);
#if defined(SWIG_STD_MODERN_STL) && !defined(SWIG_STD_NOMODERN_STL)
void flip();
#endif
#ifdef %swig_vector_methods_val
// Add swig/language extra methods
%swig_vector_methods_val(std::vector<bool, _Alloc >);
#endif
};
}