28 lines
462 B
C++
28 lines
462 B
C++
#ifndef OPERATIONALLOGWIDGET_H
|
|
#define OPERATIONALLOGWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QDateTime>
|
|
#include <QRandomGenerator>
|
|
|
|
namespace Ui {
|
|
class OperationalLogWidget;
|
|
}
|
|
|
|
class OperationalLogWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
void initTableWidgetFormat();
|
|
|
|
public:
|
|
explicit OperationalLogWidget(QWidget *parent = nullptr);
|
|
~OperationalLogWidget();
|
|
|
|
private:
|
|
Ui::OperationalLogWidget *ui;
|
|
};
|
|
|
|
#endif // OPERATIONALLOGWIDGET_H
|