aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/effectcomposer/propertyhandler.cpp
blob: 44e04ce810f94f5546e45c7fe652e1949a8ac273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "propertyhandler.h"

#include <QQmlPropertyMap>

namespace EffectComposer {

Q_GLOBAL_STATIC(QQmlPropertyMap, globalEffectComposerPropertyData)

QQmlPropertyMap *g_propertyData()
{
    return globalEffectComposerPropertyData();
}
}