made MatConstIterator STL compliant

This commit is contained in:
Vadim Pisarevsky 2010-07-29 13:52:22 +00:00
parent 808190c02e
commit 3bd00085f7

View File

@ -2424,6 +2424,9 @@ class CV_EXPORTS MatConstIterator_
public:
typedef _Tp value_type;
typedef int difference_type;
typedef const _Tp* pointer;
typedef const _Tp& reference;
typedef std::random_access_iterator_tag iterator_category;
//! default constructor
MatConstIterator_();