18 #ifndef _ACTIVEMQ_WIREFORMAT_STOMP_STOMPFRAMEWRAPPER_H_
19 #define _ACTIVEMQ_WIREFORMAT_STOMP_STOMPFRAMEWRAPPER_H_
30 namespace wireformat {
46 std::vector<unsigned char> body;
94 return this->properties.hasProperty(name);
106 std::string
getProperty(
const std::string& name,
const std::string& fallback =
"")
const {
107 return this->properties.getProperty(name, fallback);
117 return this->properties.getProperty(name,
"");
126 void setProperty(
const std::string& name,
const std::string& value) {
127 this->properties.setProperty(name, value);
145 const std::vector<unsigned char>&
getBody()
const {
169 void setBody(
const unsigned char* bytes, std::size_t numBytes);
#define AMQCPP_API
Definition: Config.h:30
A data output stream lets an application write primitive Java data types to an output stream in a por...
Definition: DataOutputStream.h:34
Java-like properties class for mapping string names to string values.
Definition: Properties.h:53