JayBeams  0.1
Another project to have fun coding.
order_executed_message.cpp
Go to the documentation of this file.
2 
3 #include <iostream>
4 
6 
7 std::ostream& jb::itch5::
8 operator<<(std::ostream& os, order_executed_message const& x) {
9  return os << x.header
10  << ",order_reference_number=" << x.order_reference_number
11  << ",executed_shares=" << x.executed_shares
12  << ",match_number=" << x.match_number;
13 }
Represent an &#39;Order Executed&#39; message in the ITCH-5.0 protocol.
std::ostream & operator<<(std::ostream &os, add_order_message const &x)
Streaming operator for jb::itch5::add_order_message.