in reaction to pull request #21 the "const uint**_t" return values have been changed into "uint**_t" return values
This commit is contained in:
parent
5a1539b18c
commit
df6b8ae743
|
|
@ -520,7 +520,7 @@ public:
|
||||||
* Get the channel we're working on
|
* Get the channel we're working on
|
||||||
* @return uint16_t
|
* @return uint16_t
|
||||||
*/
|
*/
|
||||||
const uint16_t id() const
|
uint16_t id() const
|
||||||
{
|
{
|
||||||
return _implementation->id();
|
return _implementation->id();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -506,7 +506,7 @@ public:
|
||||||
* Get the channel we're working on
|
* Get the channel we're working on
|
||||||
* @return uint16_t
|
* @return uint16_t
|
||||||
*/
|
*/
|
||||||
const uint16_t id() const
|
uint16_t id() const
|
||||||
{
|
{
|
||||||
return _id;
|
return _id;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -224,8 +224,8 @@ public:
|
||||||
const std::string &expiration () const { return _expiration; }
|
const std::string &expiration () const { return _expiration; }
|
||||||
const std::string &replyTo () const { return _replyTo; }
|
const std::string &replyTo () const { return _replyTo; }
|
||||||
const std::string &correlationID () const { return _correlationID; }
|
const std::string &correlationID () const { return _correlationID; }
|
||||||
const uint8_t priority () const { return _priority; }
|
uint8_t priority () const { return _priority; }
|
||||||
const uint8_t deliveryMode () const { return _deliveryMode; }
|
uint8_t deliveryMode () const { return _deliveryMode; }
|
||||||
const Table &headers () const { return _headers; }
|
const Table &headers () const { return _headers; }
|
||||||
const std::string &contentEncoding() const { return _contentEncoding; }
|
const std::string &contentEncoding() const { return _contentEncoding; }
|
||||||
const std::string &contentType () const { return _contentType; }
|
const std::string &contentType () const { return _contentType; }
|
||||||
|
|
@ -233,7 +233,7 @@ public:
|
||||||
const std::string &appID () const { return _appID; }
|
const std::string &appID () const { return _appID; }
|
||||||
const std::string &userID () const { return _userID; }
|
const std::string &userID () const { return _userID; }
|
||||||
const std::string &typeName () const { return _typeName; }
|
const std::string &typeName () const { return _typeName; }
|
||||||
const uint64_t timestamp () const { return _timestamp; }
|
uint64_t timestamp () const { return _timestamp; }
|
||||||
const std::string &messageID () const { return _messageID; }
|
const std::string &messageID () const { return _messageID; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue