wumu
2025-03-02 f7dd8173db8f3c2eb5beefa960d86a2bc2144f9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef LEADINGCOMPANY_H
#define LEADINGCOMPANY_H
 
#include <QMainWindow>
#include <QStandardItemModel>
 
namespace Ui {
class LeadingCompany;
}
 
class LeadingCompany : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit LeadingCompany(QWidget *parent = 0);
    ~LeadingCompany();
 
private slots:
    void on_pushButton_add_clicked();
 
private:
    Ui::LeadingCompany *ui;
 
    QStandardItemModel *m_industryLeaderModel; // 行业龙头
    QStandardItemModel *m_trendLeaderModel; // 趋势龙头
};
 
#endif // LEADINGCOMPANY_H