Represents ALT block body of POP-related info.
More...
- Version
- 1
Definition at line 27 of file popdata.hpp.
#include <popdata.hpp>
◆ id_t
◆ clear()
void altintegration::PopData::clear |
( |
| ) |
|
|
inline |
Definition at line 48 of file popdata.hpp.
48 {
49 context.clear();
50 vtbs.clear();
51 atvs.clear();
52 }
◆ empty()
bool altintegration::PopData::empty |
( |
| ) |
const |
|
inline |
Definition at line 70 of file popdata.hpp.
70{ return context.empty() && atvs.empty() && vtbs.empty(); }
◆ mergeFrom()
void altintegration::PopData::mergeFrom |
( |
const PopData & |
p | ) |
|
|
inline |
Definition at line 42 of file popdata.hpp.
42 {
43 context.insert(context.end(), p.context.begin(), p.context.end());
44 vtbs.insert(vtbs.end(), p.vtbs.begin(), p.vtbs.end());
45 atvs.insert(atvs.end(), p.atvs.begin(), p.atvs.end());
46 }
◆ toVbkEncoding() [1/2]
std::vector< uint8_t > altintegration::PopData::toVbkEncoding |
( |
| ) |
const |
◆ toVbkEncoding() [2/2]
void altintegration::PopData::toVbkEncoding |
( |
WriteStream & |
stream | ) |
const |
- Parameters
-
stream | data stream to write into |
◆ operator==
Definition at line 72 of file popdata.hpp.
72 {
73
74 return a.toVbkEncoding() == b.toVbkEncoding();
75
76 }
◆ atvs
std::vector<ATV> altintegration::PopData::atvs {} |
◆ checked
bool altintegration::PopData::checked = false |
|
mutable |
◆ context
std::vector<VbkBlock> altintegration::PopData::context |
◆ version
uint32_t altintegration::PopData::version = 1 |
◆ vtbs
std::vector<VTB> altintegration::PopData::vtbs {} |
The documentation for this struct was generated from the following file: