summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/namespaced-base-class.h
blob: 6d76db9b5423a9b4f8aba4648fb383cb49f9af7b (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 WITH Qt-GPL-exception-1.0

#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