// Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB). // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QT3DANIMATION_QANIMATIONASPECT_H #define QT3DANIMATION_QANIMATIONASPECT_H #include #include QT_BEGIN_NAMESPACE namespace Qt3DAnimation { class QAnimationAspectPrivate; class Q_3DANIMATIONSHARED_EXPORT QAnimationAspect : public Qt3DCore::QAbstractAspect { Q_OBJECT public: explicit QAnimationAspect(QObject *parent = nullptr); ~QAnimationAspect(); private: std::vector jobsToExecute(qint64 time) override; Q_DECLARE_PRIVATE(QAnimationAspect) explicit QAnimationAspect(QAnimationAspectPrivate &dd, QObject *parent); }; } // namespace Qt3DAnimation QT_END_NAMESPACE #endif // QT3DANIMATION_QANIMATIONASPECT_H