LibreVNA/Software/PC_Application/LibreVNA-GUI/Device/devicelog.h
2022-10-01 17:10:44 +02:00

30 lines
393 B
C++

#ifndef DEVICELOG_H
#define DEVICELOG_H
#include <QWidget>
namespace Ui {
class DeviceLog;
}
class DeviceLog : public QWidget
{
Q_OBJECT
public:
explicit DeviceLog(QWidget *parent = nullptr);
~DeviceLog();
public slots:
void addLine(QString line);
void clear();
private slots:
void on_bToFile_clicked();
private:
Ui::DeviceLog *ui;
};
#endif // DEVICELOG_H