src/corelib/concurrent/qfuture.h
changeset 18 2f34d5167611
parent 0 1918ee327afb
equal deleted inserted replaced
3:41300fa6a67c 18:2f34d5167611
     1 /****************************************************************************
     1 /****************************************************************************
     2 **
     2 **
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     4 ** All rights reserved.
     4 ** All rights reserved.
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
     6 **
     6 **
     7 ** This file is part of the QtCore module of the Qt Toolkit.
     7 ** This file is part of the QtCore module of the Qt Toolkit.
     8 **
     8 **
   109 
   109 
   110     class const_iterator
   110     class const_iterator
   111     {
   111     {
   112     public:
   112     public:
   113         typedef std::bidirectional_iterator_tag iterator_category;
   113         typedef std::bidirectional_iterator_tag iterator_category;
   114         typedef ptrdiff_t difference_type;
   114         typedef qptrdiff difference_type;
   115         typedef T value_type;
   115         typedef T value_type;
   116         typedef const T *pointer;
   116         typedef const T *pointer;
   117         typedef const T &reference;
   117         typedef const T &reference;
   118 
   118 
   119         inline const_iterator() {}
   119         inline const_iterator() {}