RTC Toolkit 5.1.0
Loading...
Searching...
No Matches
wrangler.hpp
Go to the documentation of this file.
1
13#ifndef RTCTK_REUSABLECOMPONENT_TELREPUB_WRANGLER_HPP
14#define RTCTK_REUSABLECOMPONENT_TELREPUB_WRANGLER_HPP
15
16#include <gsl/span>
18
19#include <functional>
20#include <system_error>
21
22namespace rtctk::telRepub {
23
28using WranglerFunction = std::function<std::error_code(
29 const gsl::span<const gsl::span<const uint8_t>>, std::vector<uint8_t>&)>;
30
31} // namespace rtctk::telRepub
32
33#endif // RTCTK_REUSABLECOMPONENT_TELREPUB_WRANGLER_HPP
Declares some common DDS functionality.
Definition ddsPubThread.cpp:17
std::function< std::error_code( const gsl::span< const gsl::span< const uint8_t > >, std::vector< uint8_t > &)> WranglerFunction
The wrangler function that is called with a span of spans containing the payload and an vector where ...
Definition wrangler.hpp:28