Chromophant/viewdebugstatus.h
2025-08-26 18:21:20 +02:00

25 lines
429 B
C++

#ifndef VIEWDEBUGSTATUS_H
#define VIEWDEBUGSTATUS_H
#include <QDialog>
#include "shimlccontroller.h"
namespace Ui {
class ViewDebugStatus;
}
class ViewDebugStatus : public QDialog
{
Q_OBJECT
public:
explicit ViewDebugStatus(QWidget *parent = nullptr);
~ViewDebugStatus();
void updateStatus(LCStatus &status);
QStringList cur_stats{};
private:
Ui::ViewDebugStatus *ui;
};
#endif // VIEWDEBUGSTATUS_H