summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/template-gtgt.h
blob: 5572c4c1ae93ce502e99d939940a59abef4e7580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef TEMPLATE_GTGT_H
#define TEMPLATE_GTGT_H
template<class TYPE, size_t COUNT>
class myTemplate :
      QString,
      QList<TYPE, QList<COUNT>>
{};

template<class TYPE, size_t COUNT>
class myTemplate2 :
      QString,
      QList<TYPE, QList< (4 >> 2) >>
{};

class Widget : public QWidget
{
    Q_OBJECT
public:
    Widget()
    {
    }
};
#endif // TEMPLATE_GTGT_H