R/register.R

Defines functions register

Documented in register

#' Register the processing of incubatortemp data in the LEEF package
#'
#' @return invisibly \code{TRUE} when completed successful
#'
#' @export
#'
register <- function() {
  if (is.null(system.file(package = "LEEF"))) {
    stop("This function requres the package to be installed!")
  }

  LEEF::add_pre_processor( pre_processor_incubatortemp )
  LEEF::add_extractor( extractor_incubatortemp )
  ##
  invisible(TRUE)
}
LEEF-UZH/LEEF.measurement.incubatortemp documentation built on Sept. 27, 2020, 6:40 p.m.