| Thread Previous • Date Previous • Date Next • Thread Next |
In std_vector_typemaps.i, we have
namespace std
{
template <class T> class vector
{
};
}
which prevents the use of
%include "std_vector.i"
If I comment out the declaration of std::vector and include
std_vector.i, I still get an error.
What is std_vector.i not being used? The way I see it it would make the wrapper code much simpler.
Garth
| Thread Previous • Date Previous • Date Next • Thread Next |