inst/tinytest/testRcppInterfaceExporter/R/exporter.R

#' @useDynLib testRcppInterfaceExporter, .registration = TRUE
#' @importFrom Rcpp sourceCpp
NULL

flags <- new.env(parent = emptyenv())

#' @export
reset_flags <- function() {
  flags$cpp_interface_upstream <- FALSE
}
.onLoad <- function(lib, pkg) {
  reset_flags()
}

#' @export
peek_flag <- function(name) {
  flags[[name]]
}
RcppCore/Rcpp documentation built on March 7, 2024, 8:48 p.m.