more cases

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5816 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-04-01 04:08:18 +00:00
commit 74f9ade9f7
3 changed files with 58 additions and 1 deletions

View file

@ -21,6 +21,7 @@
%}
namespace std {
%template(CIntPair) pair<const int, const int>;
%template() pair<double, double>;
%template(String) basic_string<char>;
%template(IntPair) pair<int, int>;
@ -29,6 +30,8 @@ namespace std {
%template(SIIPair) pair<std::pair<std::string, int>, int>;
%template(AIntPair) pair<A, int>;
%template(CCIntPair) pair<const A, const pair<int, int> >;
%template(ABPair) pair<A, B>;
%template(IntAPair) pair<int, A>;
}