/**************************************************************************** ** ** Copyright (C) 2022 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ******************************************************************************/ #include #ifndef QCONTAINERFWD_H #define QCONTAINERFWD_H // std headers can unfortunately not be forward declared #include QT_BEGIN_NAMESPACE template class QCache; template class QHash; template class QMap; template class QMultiHash; template class QMultiMap; template using QPair = std::pair; template class QQueue; template class QSet; template class QStack; template class QVarLengthArray; template class QList; #ifndef Q_CLANG_QDOC template using QVector = QList; using QStringList = QList; using QByteArrayList = QList; #else template class QVector; class QStringList; class QByteArrayList; #endif class QMetaType; class QVariant; using QVariantList = QList; using QVariantMap = QMap; using QVariantHash = QHash; using QVariantPair = QPair; QT_END_NAMESPACE #endif // QCONTAINERFWD_H