equal
deleted
inserted
replaced
3 |
3 |
4 #include <stdint.h> |
4 #include <stdint.h> |
5 |
5 |
6 namespace ns3 { |
6 namespace ns3 { |
7 |
7 |
|
8 /** |
|
9 * \brief read and write tag data |
|
10 * |
|
11 * This class allows subclasses of the ns3::Tag base class |
|
12 * to serialize and deserialize their data. |
|
13 */ |
8 class TagBuffer |
14 class TagBuffer |
9 { |
15 { |
10 public: |
16 public: |
11 TagBuffer (uint8_t *start, uint8_t *end); |
17 TagBuffer (uint8_t *start, uint8_t *end); |
12 void TrimAtEnd (uint32_t trim); |
18 void TrimAtEnd (uint32_t trim); |