1 #ifndef PROTON_SYMBOL_HPP
2 #define PROTON_SYMBOL_HPP
38 symbol(
const std::string& s=std::string()) : std::string(s) {}
41 symbol(
const char* s) : std::string(s) {}
44 template<
class Iter>
symbol(Iter start, Iter finish) : std::string(start, finish) {}
A string that represents the AMQP symbol type.
Definition: symbol.hpp:35
symbol(const std::string &s=std::string())
Construct from a std::string.
Definition: symbol.hpp:38
symbol(const char *s)
Construct from a C string.
Definition: symbol.hpp:41
symbol(Iter start, Iter finish)
Construct from any sequence of char.
Definition: symbol.hpp:44
The main Proton namespace.
Definition: annotation_key.hpp:33