mirror of
https://github.com/opencv/opencv.git
synced 2026-07-28 23:03:03 +04:00
videoio: apply CV_OVERRIDE/CV_FINAL
This commit is contained in:
@@ -62,11 +62,11 @@ struct CvCapture_Unicap : public CvCapture
|
||||
virtual bool open( int index );
|
||||
virtual void close();
|
||||
|
||||
virtual double getProperty(int) const;
|
||||
virtual bool setProperty(int, double);
|
||||
virtual bool grabFrame();
|
||||
virtual IplImage* retrieveFrame(int);
|
||||
virtual int getCaptureDomain() { return CV_CAP_UNICAP; } // Return the type of the capture object: CV_CAP_VFW, etc...
|
||||
virtual double getProperty(int) const CV_OVERRIDE;
|
||||
virtual bool setProperty(int, double) CV_OVERRIDE;
|
||||
virtual bool grabFrame() CV_OVERRIDE;
|
||||
virtual IplImage* retrieveFrame(int) CV_OVERRIDE;
|
||||
virtual int getCaptureDomain() CV_OVERRIDE { return CV_CAP_UNICAP; } // Return the type of the capture object: CV_CAP_VFW, etc...
|
||||
|
||||
bool shutdownDevice();
|
||||
bool initDevice();
|
||||
|
||||
Reference in New Issue
Block a user