RTC Toolkit 6.0.0
Loading...
Searching...
No Matches
wrangler.hpp
Go to the documentation of this file.
1
11
12#ifndef RTCTK_REUSABLECOMPONENT_TELREPUB_WRANGLER_HPP
13#define RTCTK_REUSABLECOMPONENT_TELREPUB_WRANGLER_HPP
14
15#include <gsl/span>
17
18#include <functional>
19#include <system_error>
20
21namespace rtctk::telRepub {
22
27using WranglerFunction = std::function<std::error_code(
28 const gsl::span<const gsl::span<const uint8_t>>, std::vector<uint8_t>&)>;
29
30} // namespace rtctk::telRepub
31
32#endif // RTCTK_REUSABLECOMPONENT_TELREPUB_WRANGLER_HPP
Declares some common DDS functionality.
Definition ddsPubThread.cpp:16
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:27