1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #9580 from mshabunin:fix-static-6

This commit is contained in:
Alexander Alekhin
2017-09-09 19:31:21 +00:00
41 changed files with 252 additions and 218 deletions
+4
View File
@@ -96,6 +96,10 @@ protected:
bool m_native_depth;
bool m_iscolor;
bool m_isfloat;
private:
ExrDecoder(const ExrDecoder &); // copy disabled
ExrDecoder& operator=(const ExrDecoder &); // assign disabled
};
+4
View File
@@ -70,6 +70,10 @@ protected:
FILE* m_f;
void* m_state;
private:
JpegDecoder(const JpegDecoder &); // copy disabled
JpegDecoder& operator=(const JpegDecoder &); // assign disabled
};
+4
View File
@@ -117,6 +117,10 @@ protected:
bool readHdrData(Mat& img);
bool m_hdr;
size_t m_buf_pos;
private:
TiffDecoder(const TiffDecoder &); // copy disabled
TiffDecoder& operator=(const TiffDecoder &); // assign disabled
};
#endif