JayBeams  0.1
Another project to have fun coding.
delete_order_message.cpp
Go to the documentation of this file.
2 
3 #include <ostream>
4 
5 namespace jb {
6 namespace pitch2 {
7 
8 std::ostream& operator<<(std::ostream& os, delete_order_message const& x) {
9  return os << "length=" << static_cast<int>(x.length.value())
10  << ",message_type=" << static_cast<int>(x.message_type.value())
11  << ",time_offset=" << x.time_offset.value()
12  << ",order_id=" << x.order_id.value();
13 }
14 
15 } // namespace pitch2
16 } // namespace jb
std::ostream & operator<<(std::ostream &os, add_order_message const &x)
Streaming operator for jb::pitch2::add_order_message.
boost::endian::little_uint8_buf_t length
boost::endian::little_uint32_buf_t time_offset
Represent the &#39;Delete Order&#39; message in the PITCH-2.X protocol.
boost::endian::little_uint8_buf_t message_type
boost::endian::little_uint64_buf_t order_id
The top-level namespace for the JayBeams library.
Definition: as_hhmmss.hpp:7