blob: e8e49ec5a423b4eba5f38129b663369294fb91b7 (
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
|
// 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() = default;
void QQuickDesignerCustomParser::verifyBindings(
const QQmlRefPointer<QV4::CompiledData::CompilationUnit> &,
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"
|