ProcUnit::MeasureProc
Performs measurement processing
Parameters
None.
Return Value
Returns 0 when the measurement processing succeeded.
Otherwise returns a non-zero value.
Description
Performs the measurement processing of a processing item.
Example
int Sample::MeasureProc(ProcUnit *ptrProcUnit)
{
// Get the pointer to the inner processing unit
ProcUnit *ptrInnerUnit = ptrProcUnit->GetInnerUnit(0);
// Perform the measurement processing of an inner processing unit
ptrInnerUnit->MeasureProc();
}