1 | // Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB). |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #include "qabstractaspectjobmanager_p.h" |
5 | |
6 | QT_BEGIN_NAMESPACE |
7 | |
8 | namespace Qt3DCore { |
9 | |
10 | /* |
11 | \internal |
12 | \class Qt3DCore::QAbstractAspectJobManager |
13 | \inmodule Qt3DCore |
14 | \brief A job manager for QAbstractAspect subclasses. |
15 | */ |
16 | QAbstractAspectJobManager::QAbstractAspectJobManager(QObject *parent) |
17 | : QObject(parent) |
18 | { |
19 | } |
20 | |
21 | } |
22 | |
23 | QT_END_NAMESPACE |
24 | |
25 | #include "moc_qabstractaspectjobmanager_p.cpp" |
26 | |