Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/QtCore/qvector.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // Copyright (C) 2020 The Qt Company Ltd.
0002 // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
0003 
0004 #ifndef QVECTOR_H
0005 #define QVECTOR_H
0006 
0007 #include <QtCore/qlist.h>
0008 #include <QtCore/qcontainerfwd.h>
0009 
0010 #if 0
0011 #pragma qt_class(QVector)
0012 #pragma qt_class(QMutableVectorIterator)
0013 #pragma qt_class(QVectorIterator)
0014 #endif
0015 
0016 QT_BEGIN_NAMESPACE
0017 
0018 #if !defined(QT_NO_JAVA_STYLE_ITERATORS)
0019 template<typename T>
0020 using QMutableVectorIterator = QMutableListIterator<T>;
0021 template<typename T>
0022 using QVectorIterator = QListIterator<T>;
0023 #endif
0024 
0025 QT_END_NAMESPACE
0026 
0027 #endif // QVECTOR_H