Bioseal.fromHandle constructor

Bioseal.fromHandle(
  1. Pointer<id3Bioseal> handle
)

Creates a new instance of the Bioseal class.

param handle Handle to the Bioseal. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

Bioseal.fromHandle(Pointer<id3Bioseal> handle) {
  _pHandle = calloc();
  _pHandle.value = handle;
  _disposable = false;
  _objectMap[_pHandle.value] = this;
}