mirror of
https://github.com/eliboa/TegraRcmGUI.git
synced 2024-11-08 11:51:45 +00:00
19 lines
263 B
C
19 lines
263 B
C
|
#ifndef QPAYLOADWIDGET_H
|
||
|
#define QPAYLOADWIDGET_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QWidget>
|
||
|
|
||
|
class QPayloadWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit QPayloadWidget(QWidget *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
};
|
||
|
|
||
|
#endif // QPAYLOADWIDGET_H
|