Hi there,
I need to use SWIG to wrap my C++ class which heavily uses blitz++ arrays to python. Has anybody done this before? I'm looking for a simple example .i file...

My imports in CFits.h:
Code:
  #include <stdio.h>
  #include <iostream>
  #include <cstdlib>
  #include <blitz/array.h>
  #include <blitz/vector.h>
  #include <blitz/vector-et.h>
  #include
...