Merge pull request #97 from laplaceyang/pr_direct_access

addd operator[] and at function for direct access msgs
This commit is contained in:
Luca Boccassi 2016-12-08 14:08:12 +01:00 committed by GitHub
commit 55c2eea1a7

View File

@ -93,6 +93,26 @@ public:
clear();
}
message_t& operator[] (size_t n)
{
return m_parts[n];
}
const message_t& operator[] (size_t n) const
{
return m_parts[n];
}
message_t& at (size_t n)
{
return m_parts.at(n);
}
const message_t& at (size_t n) const
{
return m_parts.at(n);
}
// Delete all parts
void clear()
{