BetaTrader
A HFT Eco-System
Loading...
Searching...
No Matches
SessionState.h
Go to the documentation of this file.
2#include <cstdint>
3#include <string>
4
5namespace fix {
6
7 struct SessionState {
8 bool isLoggedOn = false;
9 uint32_t inSeqNum = 0;
10 uint32_t outSeqNum = 0;
11 std::string senderCompId = "";
12 };
13
14} // namespace fix
Definition BusinessMessageReject.h:12
Definition SessionState.h:7
uint32_t outSeqNum
Definition SessionState.h:10
bool isLoggedOn
Definition SessionState.h:8
uint32_t inSeqNum
Definition SessionState.h:9
std::string senderCompId
Definition SessionState.h:11