Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qvector.h
Go to the documentation of this file.
1// Copyright (C) 2020 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QVECTOR_H
5#define QVECTOR_H
6
7#include <QtCore/qlist.h>
8#include <QtCore/qcontainerfwd.h>
9
10#if 0
11#pragma qt_class(QVector)
12#pragma qt_class(QMutableVectorIterator)
13#pragma qt_class(QVectorIterator)
14#endif
15
17
18#if !defined(QT_NO_JAVA_STYLE_ITERATORS)
19template<typename T>
20using QMutableVectorIterator = QMutableListIterator<T>;
21template<typename T>
22using QVectorIterator = QListIterator<T>;
23#endif
24
26
27#endif // QVECTOR_H
Combined button and popup list for selecting options.
QListIterator< T > QVectorIterator
Definition qvector.h:22
QMutableListIterator< T > QMutableVectorIterator
Definition qvector.h:20