Browse
 
Tools
Rss Categories

LVInterpretation::LVInterpretation

Reference Number: AA-00914 Views: 7366 0 Rating/ Voters

LVInterpretation constructors.

Functions

  • LVInterpretation(void)

    LVInterpretation(const LVInterpretation& other_si)

Parameters

other_hsi

The interpretation object whose contents are being copied.

Example

  1. // You can fill in the information for a LVInterpretation object with the
  2. // LVSpeechPort::GetInterpretation function, as below.
  3. LVInterpretation Interpretation(port.GetInterpretation(int voiceChannel,
    int index));

  4. // You can also create a LVInterpretation object with properties copied
  5. // from another. To use this copy constructor, you must first create an
  6. // empty handle to use as a parameter.
  7. LVInterpretation NewInterpretation;
  8. LVInterpretation(NewInterpretation, Interpretation);

  9. // The new object is the first parameter, and the original is the second.

See Also