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
4#ifndef QT3DINPUT_INPUT_ABSTRACTACTIONINPUT_H
5#define QT3DINPUT_INPUT_ABSTRACTACTIONINPUT_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 <Qt3DInput/private/backendnode_p.h>
19#include <Qt3DCore/qnodeid.h>
20
21QT_BEGIN_NAMESPACE
22
23namespace Qt3DInput {
24
25namespace Input {
26
27class InputHandler;
28
29class Q_AUTOTEST_EXPORT AbstractActionInput : public BackendNode
30{
31public:
32 AbstractActionInput();
33
34 inline static qint64 milliToNano(qint64 milli) { return milli * 1000000; }
35
36 virtual bool process(InputHandler *inputHandler, qint64 currentTime) = 0;
37};
38
39} // namespace Input
40
41} // namespace Qt3DInput
42
43QT_END_NAMESPACE
44
45#endif // QT3DINPUT_INPUT_ABSTRACTACTIONINPUT_H
46

source code of qt3d/src/input/backend/abstractactioninput_p.h