cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
15 lines
284 B
C++
15 lines
284 B
C++
/**
|
|
* SPDX-FileCopyrightText: 2021 Arjen Hiemstra <ahiemstra@heimr.nl>
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include "qmlmodule.h"
|
|
|
|
#include <QtQml/QQmlEngine>
|
|
|
|
void QmlModule::registerTypes(const char* uri)
|
|
{
|
|
Q_ASSERT(QLatin1String(uri) == QLatin1String("Test"));
|
|
}
|