Qt 6.x
The Qt SDK
Loading...
Searching...
No Matches
qpair.h
Go to the documentation of this file.
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/qglobal.h>
8
10
11#if 0
12#pragma qt_class(QPair)
13#endif
14
15template <typename T1, typename T2>
16using QPair = std::pair<T1, T2>;
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
26
27#endif // QPAIR_H
Combined button and popup list for selecting options.
std::pair< T1, T2 > QPair
void uint64_t uint64_t uint64_t value2
constexpr decltype(auto) qMakePair(T1 &&value1, T2 &&value2) noexcept(noexcept(std::make_pair(std::forward< T1 >(value1), std::forward< T2 >(value2))))
Definition qpair.h:19