File tree Expand file tree Collapse file tree 2 files changed +2
-13
lines changed
Expand file tree Collapse file tree 2 files changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -37,17 +37,6 @@ This file is part of Fast Track.
3737VideoReader::VideoReader (const string &path) : m_path{path} {
3838}
3939
40- /* *
41- * @brief Copy constructor.
42- * @param[in] video.
43- */
44- VideoReader::VideoReader (const VideoReader &video) : VideoCapture(video) {
45- }
46-
47- VideoReader &VideoReader::operator =(const VideoReader &video) {
48- return *this ;
49- }
50-
5140/* *
5241 * @brief Open the VideoReader.
5342 * @param[in] path to file.
Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ class VideoReader : public VideoCapture {
4141 public:
4242 VideoReader () = default ;
4343 VideoReader (const string &path);
44- VideoReader (const VideoReader &);
45- VideoReader &operator =(const VideoReader &);
44+ VideoReader (const VideoReader &) = delete ;
45+ VideoReader &operator =(const VideoReader &) = delete ;
4646 bool getNext (UMat &destination);
4747 bool getNext (Mat &destination);
4848 bool getImage (int index, UMat &destination);
You can’t perform that action at this time.
0 commit comments