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 | #ifndef QT3DINPUT_QABSTRACTACTIONINPUT_H |
4 | #define QT3DINPUT_QABSTRACTACTIONINPUT_H |
5 | |
6 | #include <Qt3DInput/qt3dinput_global.h> |
7 | #include <Qt3DCore/qnode.h> |
8 | |
9 | QT_BEGIN_NAMESPACE |
10 | |
11 | namespace Qt3DInput { |
12 | |
13 | class QAbstractActionInputPrivate; |
14 | |
15 | class Q_3DINPUTSHARED_EXPORT QAbstractActionInput : public Qt3DCore::QNode |
16 | { |
17 | Q_OBJECT |
18 | public: |
19 | ~QAbstractActionInput(); |
20 | |
21 | protected: |
22 | explicit QAbstractActionInput(QAbstractActionInputPrivate &dd, Qt3DCore::QNode *parent = nullptr); |
23 | }; |
24 | |
25 | } // Qt3DInput |
26 | |
27 | QT_END_NAMESPACE |
28 | |
29 | #endif // QT3DINPUT_QABSTRACTACTIONINPUT_H |
30 | |