Log.fromHandle constructor

Log.fromHandle(
  1. Pointer<id3BiosealLog> handle
)

Creates a new instance of the Log class.

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

Implementation

Log.fromHandle(Pointer<id3BiosealLog> handle) {
  _pHandle = calloc();
  _pHandle.value = handle;
  _disposable = false;
}