Added initial support for variadic templates.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-matevz@11458 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Matevz Jekovec 2009-07-27 19:07:38 +00:00
commit 85ae38ccee
3 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,8 @@
%module cpp0x_variadic_templates
%inline %{
template<typename... Values>
class tuple {
};
%}