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_ANIMATION_HANDLE_TYPES_P_H
5#define QT3DANIMATION_ANIMATION_HANDLE_TYPES_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists for the convenience
12// of other Qt classes. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <Qt3DCore/private/qhandle_p.h>
19
20QT_BEGIN_NAMESPACE
21
22namespace Qt3DAnimation {
23namespace Animation {
24
25class AnimationClip;
26class ClipAnimator;
27class BlendedClipAnimator;
28class ChannelMapping;
29class ChannelMapper;
30class Skeleton;
31
32typedef Qt3DCore::QHandle<AnimationClip> HAnimationClip;
33typedef Qt3DCore::QHandle<ClipAnimator> HClipAnimator;
34typedef Qt3DCore::QHandle<BlendedClipAnimator> HBlendedClipAnimator;
35typedef Qt3DCore::QHandle<ChannelMapping> HChannelMapping;
36typedef Qt3DCore::QHandle<ChannelMapper> HChannelMapper;
37typedef Qt3DCore::QHandle<Skeleton> HSkeleton;
38
39} // namespace Animation
40} // namespace Qt3DAnimation
41
42QT_END_NAMESPACE
43
44#endif // QT3DANIMATION_ANIMATION_HANDLE_TYPES_P_H
45

source code of qt3d/src/animation/backend/handle_types_p.h