summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/template-gtgt.h
blob: ed2da17405aad33c208a77b04fca93a736b30916 (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

#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