#ifndef SERAILPLUGIN_H #define SERAILPLUGIN_H #include "iwidget.h" class QStackedWidget; class SerailPlugin : public IWidget { Q_OBJECT Q_PLUGIN_METADATA(IID PLUGIN_INTERFACE_iid FILE "serial.json") public: SerailPlugin(QWidget *parent = NULL); QString id(); private: QStackedWidget *m_statckWidget; }; #endif // SERAILPLUGIN_H