mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-28 03:09:24 +08:00
19 lines
322 B
C
19 lines
322 B
C
|
|
#pragma once
|
|||
|
|
|
|||
|
|
#include "qt/MyQUI.h"
|
|||
|
|
|
|||
|
|
class QWStatistics : public MyWidget
|
|||
|
|
{
|
|||
|
|
Q_OBJECT
|
|||
|
|
public:
|
|||
|
|
QWStatistics(QWidget* parent);
|
|||
|
|
~QWStatistics();
|
|||
|
|
|
|||
|
|
public slots :
|
|||
|
|
void onCurrentIndexChanged(int index);
|
|||
|
|
|
|||
|
|
public:
|
|||
|
|
shared_ptr<QComboBox> comboxStation;
|
|||
|
|
shared_ptr<QTableWidget> table;
|
|||
|
|
shared_ptr<QPushButton> btnRefresh;
|
|||
|
|
};
|