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 "corelogging_p.h" |
5 | |
6 | QT_BEGIN_NAMESPACE |
7 | |
8 | namespace Qt3DCore { |
9 | |
10 | Q_LOGGING_CATEGORY(Nodes, "Qt3D.Core.Nodes", QtWarningMsg); |
11 | Q_LOGGING_CATEGORY(Aspects, "Qt3D.Core.Aspects", QtWarningMsg); |
12 | Q_LOGGING_CATEGORY(Resources, "Qt3D.Core.Resources", QtWarningMsg); |
13 | Q_LOGGING_CATEGORY(ChangeArbiter, "Qt3D.Core.ChangeArbiter", QtWarningMsg); |
14 | |
15 | } // Qt3D |
16 | |
17 | QT_END_NAMESPACE |
18 |