Telnet++
A C++ library for interacting with Telnet streams
byte_converter.hpp
1 #pragma once
2 #include "telnetpp/element.hpp"
3 
4 namespace telnetpp {
5 
6 //* =========================================================================
15 //* =========================================================================
16 class TELNETPP_EXPORT byte_converter
17 {
18 public :
19  //* =====================================================================
24  //* =====================================================================
25  telnetpp::u8stream send(std::vector<telnetpp::stream_token> const &tokens);
26 };
27 
28 }
A collection of bytes that models the Standard Library&#39;s Container concept.
A class that can convert from a std::vector<telnetpp::stream_token> to a telnetpp::u8stream.
Definition: byte_converter.hpp:16
Definition: byte_converter.hpp:4