25 lines
429 B
C++
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
|