AtCore 1.0.72
AtCore is a API to manage the serial connection between the computer and 3D Printers.
Loading...
Searching...
No Matches
smoothieplugin.h
Go to the documentation of this file.
1/* AtCore KDE Libary for 3D Printers
2 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
3 SPDX-FileCopyrightText: 2016-2018 Chris Rizzitello <rizzitello@kde.org>
4 SPDX-FileCopyrightText: 2016 Tomaz Canabrava <tcanabrava@kde.org>
5 SPDX-FileCopyrightText: 2016-2018 Patrick José Pereira <patrickjp@kde.org>
6*/
7
8#pragma once
9
10#include <QObject>
11
12#include "ifirmware.h"
18{
19 Q_OBJECT
20 Q_PLUGIN_METADATA(IID "org.kde.atelier.core.firmware")
21 Q_INTERFACES(IFirmware)
22
23public:
28 ~SmoothiePlugin() = default;
29
34 virtual bool isSdSupported() const override;
35
40 QString name() const override;
41};
The IFirmware class Base Class for Firmware Plugins.
Definition ifirmware.h:25
The SmoothiePlugin class Plugin for Smoothie.
Definition smoothieplugin.h:18
QString name() const override
Return Plugin name.
Definition smoothieplugin.cpp:17
virtual bool isSdSupported() const override
Check for plugin support of sd cards.
Definition smoothieplugin.cpp:22
SmoothiePlugin()
Create new SmoothiePlugin.
Definition smoothieplugin.cpp:27
~SmoothiePlugin()=default