1// Copyright (C) 2017 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#ifndef QT3DANIMATION_QABSTRACTCHANNELMAPPING_H
5#define QT3DANIMATION_QABSTRACTCHANNELMAPPING_H
6
7#include <Qt3DCore/qnode.h>
8#include <Qt3DAnimation/qt3danimation_global.h>
9
10QT_BEGIN_NAMESPACE
11
12namespace Qt3DAnimation {
13
14class QAbstractChannelMappingPrivate;
15
16class Q_3DANIMATIONSHARED_EXPORT QAbstractChannelMapping : public Qt3DCore::QNode
17{
18 Q_OBJECT
19
20public:
21 ~QAbstractChannelMapping();
22
23protected:
24 QAbstractChannelMapping(QAbstractChannelMappingPrivate &dd, Qt3DCore::QNode *parent = nullptr);
25
26private:
27 Q_DECLARE_PRIVATE(QAbstractChannelMapping)
28};
29
30} // namespace Qt3DAnimation
31
32QT_END_NAMESPACE
33
34#endif // QT3DANIMATION_QABSTRACTCHANNELMAPPING_H
35

source code of qt3d/src/animation/frontend/qabstractchannelmapping.h