-
Notifications
You must be signed in to change notification settings - Fork 18
/
eventbase.h
45 lines (31 loc) · 1.56 KB
/
eventbase.h
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
#ifndef EVENTBASE_H
#define EVENTBASE_H
#include <string>
#include <memory>
#define EVENT_LOG "eLog" //# 日志事件,通常使用某个监听函数直接显示
#define EVENT_TDLOGIN "eTdLogin" //# 交易服务器登录成功事件
#define EVENT_TIMER "eTimer" //# 计时器事件,每隔1秒发送一次
#define EVENT_CONTRACT "eContract" // # 合约查询回报事件
#define EVENT_INVESTOR "eInvestor" // # 投资者查询回报事件
#define EVENT_ACCOUNT "eAccount" // # 账户查询回报事件
#define EVENT_POSITION "ePosition" // # 持仓查询回报事件
#define EVENT_POSITION_UI "ePositionUI" // # 持仓查询回报事件(更新UI)
#define EVENT_TICK "eTick" //# 行情推送事件
#define EVENT_TICK_CONTRACT "eTick." //# 特定合约的行情事件
#define EVENT_ORDER "eOrder" //# 报单推送事件
#define EVENT_ORDER_ORDERREF "eOrder." //# 特定报单号的报单事件
#define EVENT_TRADE "eTrade" //# 成交推送事件
#define EVENT_TRADE_CONTRACT "eTrade." //# 特定合约的成交事件
#define EVENT_STG_BEG "eBegStg" //# CTA策略开启事件
#define EVENT_STG_END "eEngStg" //# CTA策略关闭事件
/*
* 事件基类,包含一个string和shared_ptr(回调函数的指针,char* ,需要什么类型就转换成什么类型)
*/
struct Event
{
Event() = default;
Event(std::string type) : type_(type){}
std::string type_;
std::shared_ptr<char> data_;
};
#endif // EVENTBASE_H