summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/namespaced-base-class.h
blob: 46bd2bae290c2b4f9a2a77c654e309312c2df087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef TST_MOC_NAMESPACED_BASE_CLASS_H
#define TST_MOC_NAMESPACED_BASE_CLASS_H

#include <QObject>

namespace QTBUG_101141 {
    class Base : public QObject {
        Q_OBJECT
    };

    class Derived : public Base
    {
        Q_OBJECT
    };
}

#endif // TST_MOC_NAMESPACED_BASE_CLASS_H