Browse
 
Tools
Rss Categories

LVSemanticData::LVSemanticData

Reference Number: AA-00926 Views: 6623 0 Rating/ Voters

LVSemanticData constructor.

Function

  • LVSemanticData()

    LVSemanticData(const LVSemanticData & other)

    LVSemanticData(H_SI_DATA hsi)

Parameters

other

The semantic data object being copied.

hsi

The semantic data handle being copied.

Example

C++ Code

  1. // The first of these constructors creates an empty LVSemanticData object.
  2. LVSemanticData dataObjectOne;

  3. // The second copies the information from one object into a new one.
  4. LVSemanticData dataObjectTwo(dataObjectOne);

  5. // The third copies the information from an H_SI_DATA handle,
  6. // which is found in the C functionality of LVSemanticData.
  7. H_SI_DATA CDataObject = LV_SRE_GetInterpretationData(hport, voicechannel,
  8. index);
  9. LVSemanticData dataObjectThree(CDataObject);

See Also