13 lines
317 B
C++
13 lines
317 B
C++
#ifndef a_存储列表_H
|
|
#define a_存储列表_H
|
|
#include "function_global.h"
|
|
class 存储列表 : public BaseWidget {
|
|
public:
|
|
void paintEvent(QPaintEvent* event) override;
|
|
QHBoxLayout* mainLayout{};
|
|
CustomTableView* m_table{};
|
|
QVBoxLayout* createV();
|
|
存储列表();
|
|
};
|
|
#endif // 存储列表_H
|