aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/designer/qquickdesignercustomparserobject.cpp
blob: c050634f19158707a0b555813f9ee3c08d84adbc (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "qquickdesignercustomparserobject_p.h"

QT_BEGIN_NAMESPACE

QQuickDesignerCustomParserObject::QQuickDesignerCustomParserObject()
{

}

void QQuickDesignerCustomParser::verifyBindings(const QQmlRefPointer<QV4::ExecutableCompilationUnit> &, const QList<const QV4::CompiledData::Binding *> &)
{
    /* Nothing to do we accept anything */
}

void QQuickDesignerCustomParser::applyBindings(QObject *, const QQmlRefPointer<QV4::ExecutableCompilationUnit> &, const QList<const QV4::CompiledData::Binding *> &)
{
    /* Nothing to do we accept anything */
}

QT_END_NAMESPACE

#include "moc_qquickdesignercustomparserobject_p.cpp"