summaryrefslogtreecommitdiff
path: root/src/input/frontend/qabstractactioninput.cpp
blob: 6157f273bf2a03f6b860a17c8f7b87bd309ce1d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qabstractactioninput_p.h"

#include <Qt3DCore/private/qnode_p.h>

QT_BEGIN_NAMESPACE

namespace Qt3DInput {
/*!
    \class Qt3DInput::QAbstractActionInput
    \inherits QNode

    \inmodule Qt3DInput
    \since 5.7

    \brief QAbstractActionInput is the base class for the Action Input and all Aggregate Action Inputs.
*/

/*!
    \qmltype AbstractActionInput
    \inqmlmodule Qt3D.Input
    \instantiates Qt3DInput::QAbstractActionInput
    \brief QML frontend for the abstract Qt3DInput::QAbstractActionInput C++ class.

    The base class for the Action Input and all Aggregate Action Inputs.
    \since 5.7
*/

/*!
    \internal
*/
QAbstractActionInput::QAbstractActionInput(QAbstractActionInputPrivate &dd, Qt3DCore::QNode *parent)
    : Qt3DCore::QNode(dd, parent)
{
}

/*!
    \internal
*/
QAbstractActionInput::~QAbstractActionInput()
{
}

} // Qt3DInput

QT_END_NAMESPACE