/*************************************************************************** qfield_qml_init.h ----------------- begin : Jul 2021 copyright : (C) 2021 by Mathieu Pellerin email : mathieu@opengis.ch ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "layerutils.h" #include #include #include #include #define REGISTER_SINGLETON( uri, _class, name ) qmlRegisterSingletonType<_class>( uri, 1, 0, name, []( QQmlEngine *engine, QJSEngine *scriptEngine ) -> QObject * { Q_UNUSED(engine); Q_UNUSED(scriptEngine); return new _class(); } ) void qmlInit( QQmlEngine *engine ) { Q_UNUSED( engine ) REGISTER_SINGLETON( "org.qfield", LayerUtils, "LayerUtils" ); qRegisterMetaType( "QgsField" ); qRegisterMetaType( "QVariant::Type" ); }