summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/proxypage/src/proxy.h
blob: 05a17f826898dd893007db87de747dc8fae14a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once

// dummy declaration
namespace std {
    template<class T1, class T2> struct pair;
}

template <class T1, class T2>
using StdPair = std::pair<T1, T2>;