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