LibreVNA/Software/PC_Application/Device/devicelog.h
2020-08-30 22:03:41 +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