blob: 9e46ce3edc89c24973805af4800e5d56ab679634 (
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
#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"
|