ProcUnit::MeasureOut

Performs measurement result output

int MeasureOut(
)

Parameters
None.

Return Value
Returns 0 when the measurement result output processing succeeded.
Otherwise returns a non-zero value.

Description
Performs the measurement result output processing of a processing item.

Example
    int Sample::MeasureOut(ProcUnit *ptrProcUnit)
    {

        // Get the pointer to the inner processing unit

        ProcUnit *ptrInnerUnit = ptrProcUnit->GetInnerUnit(0);

        // Perform the measurement result output processing of an inner processing unit

        ptrInnerUnit->MeasureOut();
    }