FaceTemplateList.fromHandle constructor

FaceTemplateList.fromHandle(
  1. Pointer<id3FaceTemplateList> handle
)

Creates a new instance of the FaceTemplateList class.

param handle Handle to the FaceTemplateList. throws FaceException An error has occurred during Face Library execution.

Implementation

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