1 #ifndef PROTON_SYMBOL_HPP 2 #define PROTON_SYMBOL_HPP 33 symbol(
const std::string& s=std::string()) :
std::string(s) {}
39 template<
class Iter>
symbol(Iter start, Iter finish) :
std::string(start, finish) {}
44 #endif // PROTON_SYMBOL_HPP symbol(Iter start, Iter finish)
Construct from any sequence of char.
Definition: symbol.hpp:39
symbol(const char *s)
Construct from a C string.
Definition: symbol.hpp:36
A std::string that represents the AMQP symbol type.
Definition: symbol.hpp:30
symbol(const std::string &s=std::string())
Construct from a std::string.
Definition: symbol.hpp:33
Type traits for mapping between AMQP and C++ types.
Definition: annotation_key.hpp:28