Export the idset. Be aware this can produce chains of several megabytes. Returns: None
| Return Type | Function name | Arguments |
|---|---|---|
| void | hzIntset::Show | (hzChain&,) |
Declared in file: hzIntset.h
Defined in file : hzIntset.cpp
Function Logic:
Function body:
void hzIntset::Show (hzChain& Z)
{
// Export the idset. Be aware this can produce chains of several megabytes.
//
// Argument: Z The aggregation chain
//
// Returns: None
_hzfunc("hzIntset::Show") ;
hzVect<_idsNode*>* pNodes ; // Vector of nodes
_idsNode* pNode ; // Node pointer
uint32_t n ; // Loop iterator
// Is there anything to do?
if (mx)
{
if (mx->m_pData)
{
if (mx->m_bVect)
{
pNodes = (hzVect<_idsNode*>*) mx->m_pData ;
for (n = 0; n < pNodes->Count() ; n++)
{
pNode = pNodes->operator[](n) ;
pNode->Show(Z) ;
}
}
else
{
pNode = (_idsNode*) mx->m_pData ;
pNode->Show(Z) ;
}
}
}
}