File indexing completed on 2024-04-14 03:50:21

0001 /**
0002  * SPDX-FileCopyrightText: 2021 Arjen Hiemstra <ahiemstra@heimr.nl>
0003  *
0004  * SPDX-License-Identifier: BSD-3-Clause
0005  */
0006 
0007 #include "qmlmodule.h"
0008 
0009 #include <QtQml/QQmlEngine>
0010 
0011 void QmlModule::registerTypes(const char* uri)
0012 {
0013     Q_ASSERT(QLatin1String(uri) == QLatin1String("Test"));
0014 }