File indexing completed on 2024-05-19 04:42:21

0001 /* AtCore KDE Libary for 3D Printers
0002     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0003     SPDX-FileCopyrightText: 2019 Lays Rodrigues <lays.rodrigues@kde.org>
0004 */
0005 
0006 #pragma once
0007 #include <QQmlExtensionPlugin>
0008 
0009 class AtCoreExtensionPlugin : public QQmlExtensionPlugin
0010 {
0011     Q_OBJECT
0012     Q_PLUGIN_METADATA(IID "org.kde.atcore")
0013 
0014 public:
0015     void registerTypes(const char *uri) override;
0016 };