Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
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// Qt-Security score:significant reason:default
4
5#ifndef QVECTOR_H
6#define QVECTOR_H
7
8#include <QtCore/qlist.h>
9#include <QtCore/qcontainerfwd.h>
10
11#if 0
12#pragma qt_class(QVector)
13#pragma qt_class(QMutableVectorIterator)
14#pragma qt_class(QVectorIterator)
15#endif
16
17QT_BEGIN_NAMESPACE
18
19#if !defined(QT_NO_JAVA_STYLE_ITERATORS)
20template<typename T>
21using QMutableVectorIterator = QMutableListIterator<T>;
22template<typename T>
23using QVectorIterator = QListIterator<T>;
24#endif
25
26QT_END_NAMESPACE
27
28#endif // QVECTOR_H