I have this class
class CamFeed {
public:
// constructor
CamFeed(ofVideoGrabber &cam);
ofVideoGrabber &cam;
};
And this constructor:
CamFeed::CamFeed(ofVideoGrabber &cam) {
this->cam = cam;
}
I get this error on the constructor: Constructor for '' must explicitly initialize the reference member ''
What is a good way to get around this?
See Question&Answers more detail:os