1 | // Copyright (C) 2016 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 | #include "qabstractactioninput_p.h" |
4 | |
5 | #include <Qt3DCore/private/qnode_p.h> |
6 | |
7 | QT_BEGIN_NAMESPACE |
8 | |
9 | namespace Qt3DInput { |
10 | /*! |
11 | \class Qt3DInput::QAbstractActionInput |
12 | \inherits QNode |
13 | |
14 | \inmodule Qt3DInput |
15 | \since 5.7 |
16 | |
17 | \brief QAbstractActionInput is the base class for the Action Input and all Aggregate Action Inputs. |
18 | */ |
19 | |
20 | /*! |
21 | \qmltype AbstractActionInput |
22 | \inqmlmodule Qt3D.Input |
23 | \instantiates Qt3DInput::QAbstractActionInput |
24 | \brief QML frontend for the abstract Qt3DInput::QAbstractActionInput C++ class. |
25 | |
26 | The base class for the Action Input and all Aggregate Action Inputs. |
27 | \since 5.7 |
28 | */ |
29 | |
30 | /*! |
31 | \internal |
32 | */ |
33 | QAbstractActionInput::QAbstractActionInput(QAbstractActionInputPrivate &dd, Qt3DCore::QNode *parent) |
34 | : Qt3DCore::QNode(dd, parent) |
35 | { |
36 | } |
37 | |
38 | /*! |
39 | \internal |
40 | */ |
41 | QAbstractActionInput::~QAbstractActionInput() |
42 | { |
43 | } |
44 | |
45 | } // Qt3DInput |
46 | |
47 | QT_END_NAMESPACE |
48 | |
49 | #include "moc_qabstractactioninput.cpp" |
50 | |