I would like to return a default Null value for a method returning a QList<float*> (in case processing fails, I want to return).
How to build a Null QList<float*> properly?
In general, there's no such thing as a "null value" for non-pointer types. Options include:
boost::optional<QList>
or std::pair<bool, QList>