I'll start off by saying I don't really know C++ or cython but I need to write a python wrapper for some c++ code. I may be going about this the wrong way but from what I understand you include a header file in cython with
cdef extern from 'header_file.h':
However, if I have some code like:
#include "gstCamera.h"
#include "glDisplay.h"
#include "glTexture.h"
How do I include all of them? I think that I just don't understand cython well enough and that its not as object oriented as c++ but I'm not sure. Any help would be appreciated.