3 #include "telnetpp/core.hpp" 4 #include <boost/variant.hpp> 5 #include <initializer_list> 9 namespace telnetpp {
namespace options {
namespace msdp {
20 std::vector<std::string>,
21 boost::recursive_wrapper<std::vector<variable>>
40 std::string
const &name,
47 std::string
const &name,
48 std::initializer_list<std::string>
const &array_values);
54 std::string
const &name,
55 std::initializer_list<variable>
const &table_values);
TELNETPP_EXPORT bool operator==(variable const &lhs, variable const &rhs)
Equality operator.
Definition: variable.cpp:81
A structure that represents a named value.
Definition: variable.hpp:29
TELNETPP_EXPORT bool operator!=(variable const &lhs, variable const &rhs)
Inequality operator.
Definition: variable.cpp:90
Definition: byte_converter.hpp:4
A variant that can either be a string, an array of string, or an array of telnetpp::options::msdp::va...
Definition: variable.hpp:11