wumu
1 天以前 e726146c9699f7fbedbbce99f83529bc4fcbdaa1
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
40
41
42
43
44
45
46
47
#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"
#include "deepseekmainwindow.h"
#include "agilestrategy.h" // 灵动策略
#include "separateanalysis.h"
#include "analysisbyrediscache.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; // 历史相关
    DeepSeekMainWindow *m_deepSeek; // 个股深搜
    AgileStrategy *m_agileStrategy; // 灵动策略
    SeparateAnalysis *m_separateAnalysis; // 个股分析 单独分析
    AnalysisByRedisCache *m_analysisByRedisCache; // 个股分析 通过缓存分析
 
 
};
 
#endif // CLIENTMAINWINDOW_H