1// Copyright (C) 2016 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 QPAIR_H
5#define QPAIR_H
6
7#include <QtCore/qcontainerfwd.h>
8#include <QtCore/qglobal.h>
9
10QT_BEGIN_NAMESPACE
11
12#if 0
13#pragma qt_class(QPair)
14#endif
15
16#ifndef QT_NO_QPAIR
17
18template <typename T1, typename T2>
19constexpr decltype(auto) qMakePair(T1 &&value1, T2 &&value2)
20 noexcept(noexcept(std::make_pair(std::forward<T1>(value1), std::forward<T2>(value2))))
21{
22 return std::make_pair(std::forward<T1>(value1), std::forward<T2>(value2));
23}
24
25#endif // QT_NO_QPAIR
26
27QT_END_NAMESPACE
28
29#endif // QPAIR_H
30