Telnet++  3.1.0.2
A C++ library for interacting with Telnet streams
decoder.hpp
1 #pragma once
2 
3 #include "telnetpp/options/msdp/variable.hpp"
4 
5 #include <functional>
6 
7 namespace telnetpp::options::msdp::detail {
8 
9 //* =========================================================================
11 //* =========================================================================
12 TELNETPP_EXPORT
13 void decode(
14  telnetpp::bytes data,
15  std::function<void(telnetpp::options::msdp::variable const &)> const &cont);
16 
17 } // namespace telnetpp::options::msdp::detail
A structure that represents a named value.
Definition: variable.hpp:32