summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/grand-parent-gadget-class.h
blob: f09b51f33c6b67ccb32b192926a5676d303d94a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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 GRANDPARENTGADGETCLASS_H
#define GRANDPARENTGADGETCLASS_H

#include <QtCore/qobjectdefs.h>

namespace GrandParentGadget {

struct BaseGadget { Q_GADGET };
struct Derived : BaseGadget {};
struct DerivedGadget : Derived { Q_GADGET };
template<typename T> struct CRTP : BaseGadget {};
struct CRTPDerivedGadget : CRTP<CRTPDerivedGadget> { Q_GADGET };
}

#endif // GRANDPARENTGADGETCLASS_H