base class to allow simple management of packet tags More...
#include <ndn-cxx/detail/packet-base.hpp>
Inheritance diagram for ndn::PacketBase:
Collaboration diagram for ndn::PacketBase:Public Member Functions | |
| uint64_t | getCongestionMark () const |
| get the value of the CongestionMark tag More... | |
| template<typename T > | |
| shared_ptr< T > | getTag () const |
| get a tag item More... | |
| template<typename T > | |
| void | removeTag () const |
| remove tag item More... | |
| void | setCongestionMark (uint64_t mark) |
| set the CongestionMark tag to the specified value More... | |
| template<typename T > | |
| void | setTag (shared_ptr< T > tag) const |
| set a tag item More... | |
base class to allow simple management of packet tags
Definition at line 31 of file packet-base.hpp.
| uint64_t ndn::PacketBase::getCongestionMark | ( | ) | const |
get the value of the CongestionMark tag
Definition at line 28 of file packet-base.cpp.
|
inherited |
get a tag item
| T | type of the tag, which must be a subclass of ndn::Tag |
| nullptr | if no Tag of type T is stored |
Definition at line 66 of file tag-host.hpp.
|
inherited |
remove tag item
Definition at line 93 of file tag-host.hpp.
| void ndn::PacketBase::setCongestionMark | ( | uint64_t | mark | ) |
set the CongestionMark tag to the specified value
Definition at line 41 of file packet-base.cpp.
|
inherited |
set a tag item
| T | type of the tag, which must be a subclass of ndn::Tag |
Definition at line 79 of file tag-host.hpp.