I would like to pass a list of float** arguments to some method which is working with C-syle and float** only (but we consider we can have a QList<> as arguments type).
I tried with
QList< float** > list_ = new QList< float** >();
but this is not working. What should i use instead ? What would be for instead Qt container for a list of 2D matrices ?
thanks
You are using a java like syntax (or c# or others)
In C++ it should be either
or