made MatConstIterator STL compliant

pull/13383/head
Vadim Pisarevsky 15 years ago
parent 808190c02e
commit 3bd00085f7
  1. 3
      modules/core/include/opencv2/core/core.hpp

@ -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_();

Loading…
Cancel
Save