mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 07:13:02 +04:00
videoio: apply CV_OVERRIDE/CV_FINAL
This commit is contained in:
@@ -1441,11 +1441,11 @@ public:
|
||||
virtual bool open( const char* filename );
|
||||
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_QT; } // 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_QT; } // Return the type of the capture object: CV_CAP_VFW, etc...
|
||||
protected:
|
||||
|
||||
CvCapture_QT_Movie* captureQT;
|
||||
|
||||
Reference in New Issue
Block a user