That is correct, there is currently no support for integer template
arguments. You'll have to fake it with the cname way of doing things
(like had to be done with all C++ before 0.13).
- Robert
There's not a nice way of doing it, but here's the hacks that work:
cdef extern from *:
ctypedef int myIntParameter "xxx" # a fake type
cdef Test[myIntParameter] t
will create t of type Test<xxx>. You can also do
cdef extern fro "test.h":
cdef cppclass Test "Test<xxx>"
and treat Test as an unparameterized type to get the same result.
- Robert