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

@ -12,7 +12,7 @@
size_type count(const key_type& x) const;
#ifdef SWIG_EXPORT_ITERATOR_METHODS
iterator insert(iterator position, const value_type& x);
// iterator insert(iterator position, const value_type& x);
void erase(iterator position);
void erase(iterator first, iterator last);
@ -29,7 +29,7 @@
%std_map_methods_common(map);
#ifdef SWIG_EXPORT_ITERATOR_METHODS
iterator insert(const value_type& x);
// iterator insert(const value_type& x);
#endif
%enddef
@ -113,13 +113,13 @@ namespace std {
}
%typemap_traits_ptr(SWIG_TYPECHECK_MAP, std::map<_Key, _Tp, _Compare, _Alloc >);
%std_map_methods(map);
#ifdef %swig_map_methods
// Add swig/language extra methods
%swig_map_methods(std::map<_Key, _Tp, _Compare, _Alloc >);
#endif
%std_map_methods(map);
};
}