Warning, file /libraries/kpublictransport/src/osm/io/o5mplugin.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org>
0003     SPDX-License-Identifier: LGPL-2.0-or-later
0004 */
0005 
0006 #define QT_STATICPLUGIN 1
0007 
0008 #include "../ioplugin.h"
0009 #include "../o5mparser.h"
0010 
0011 class OSM_O5mIOPlugin : public QObject, public OSM::IOPlugin<OSM::O5mParser>
0012 {
0013     Q_OBJECT
0014     Q_PLUGIN_METADATA(IID OSMIOPluginInteraface_iid FILE "o5mplugin.json")
0015     Q_INTERFACES(OSM::IOPluginInterface)
0016 };
0017 
0018 #include "o5mplugin.moc"