wumu
2025-02-10 696f5b6779bd1f904c2497bb29a1cc991ab0477a
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
30
31
32
33
34
35
36
37
38
39
#ifndef CLIENTMAINWINDOW_H
#define CLIENTMAINWINDOW_H
 
#include <QMainWindow>
#include "getstocklist.h"
#include "stockpolicy.h"
#include "leadingcompany.h"
#include "showinfomessage.h"
#include "regularinvestment.h"
#include "historydata.h"
 
 
namespace Ui {
class ClientMainWindow;
}
 
class ClientMainWindow : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit ClientMainWindow(QWidget *parent = 0);
    ~ClientMainWindow();
 
    void initUi();
 
private:
    Ui::ClientMainWindow *ui;
    GetStockList *m_getStockList;
    StockPolicy *m_stockPolicy;
    LeadingCompany *m_leadingCom; // 龙头公司
    ShowInfoMessage *m_showInfoMess; // 显示信息提示
    RegularInvestment *m_regular; // 定投设置
    HistoryData *m_history; // 历史相关
 
 
};
 
#endif // CLIENTMAINWINDOW_H