Commit 3bd00085 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

made MatConstIterator STL compliant

parent 808190c0
......@@ -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_();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment