// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #include "testtypes.h" void registerTypes() { qmlRegisterType("Test", 1, 0, "MyTypeObject"); qmlRegisterType("Test", 1, 0, "MyConstantValueSource"); qmlRegisterType("Test", 1, 0, "MyOffsetValueInterceptor"); qmlRegisterType("Test", 1, 0, "MyColorObject"); qmlRegisterType("Test", 1, 0, "MyColorInterceptor"); qmlRegisterType("Test", 1, 0, "MyFloatSetInterceptor"); qmlRegisterType("Test", 1, 0, "MyFloatIgnoreInterceptor"); }