Hi I am trying to forward declarate the cv::Mat class but I cant get it to work. It gives the message field 'frame' has incomplete type.
OpenGlImpl.h
namespace cv {
class Mat;
}
class OpenGLImpl {
private:
cv::Mat frame;
};
How should I properly forward declarate this?