ProcUnit::GetInnerUnit
Gets the pointer to the inner processing unit
ProcUnit *GetInnerUnit(
int innerUnitNo
);
Parameters
innerUnitNo
|
Processing unit number to be got
|
Return Value
Returns the pointer to the inner processing unit.
If failed to get, returns NULL.
Description
Gets the pointer to the inner processing unit that is registered with the processing unit number specified by the argument.
Example
int Sample::MeasureProc(ProcUnit *ptrProcUnit)
{
// Perform the measurement of the processing item registered with the processing unit No. 0
ptrProcUnit->GetInnerUnit(0)->MeasureProc();
}