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 QT3DEXTRAS_QSPRITESHEETITEM_P_H
5#define QT3DEXTRAS_QSPRITESHEETITEM_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/qnode_p.h>
19
20QT_BEGIN_NAMESPACE
21
22namespace Qt3DExtras {
23
24class QSpriteSheetItem;
25
26class QSpriteSheetItemPrivate: public Qt3DCore::QNodePrivate
27{
28 QSpriteSheetItemPrivate();
29
30 int m_x;
31 int m_y;
32 int m_width;
33 int m_height;
34
35 Q_DECLARE_PUBLIC(QSpriteSheetItem)
36};
37
38} // Qt3DExtras
39
40QT_END_NAMESPACE
41
42#endif // QT3DEXTRAS_QSPRITESHEETITEM_P_H
43
44

source code of qt3d/src/extras/defaults/qspritesheetitem_p.h