4#include <oscpack/osc/OscReceivedElements.h>
9struct osc_packet_processor
13 void operator()(
const char* data, std::size_t sz)
const noexcept
16 oscpack::ReceivedPacket p{data, sz};
18 on_message(oscpack::ReceivedMessage(p));
20 on_bundle(oscpack::ReceivedBundle(p));
22 catch(std::exception& e)
32 void on_bundle(
const oscpack::ReceivedBundle& b)
const
34 using namespace oscpack;
35 for(
auto i = b.ElementsBegin(); i != b.ElementsEnd(); ++i)
38 on_message(oscpack::ReceivedMessage(*i));
40 on_bundle(oscpack::ReceivedBundle(*i));
spdlog::logger & logger() noexcept
Where the errors will be logged. Default is stderr.
Definition context.cpp:118