aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qmltc/supportlibrary/qqmlcpponassignment.cpp
blob: e6f170fe257e5d6b19db02eb222f14a1947a10f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2021 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 "qqmlcpponassignment_p.h"

QT_BEGIN_NAMESPACE

void QQmlCppOnAssignmentHelper::set(QQmlPropertyValueInterceptor *interceptor,
                                    const QQmlProperty &property)
{
    interceptor->setTarget(property);
}

void QQmlCppOnAssignmentHelper::set(QQmlPropertyValueSource *valueSource,
                                    const QQmlProperty &property)
{
    valueSource->setTarget(property);
}

QT_END_NAMESPACE