#pragma once /******************************************************************************/ #include /******************************************************************************/ namespace amqp { /** * The 8th byte is used to store weather the stream is compressed or * not */ const std::array AMQP_HEADER { { 'c', 'o', 'r', 'd', 'a', 1, 0 } }; } /******************************************************************************/