# 'recommended' in https://cran.r-project.org/doc/manuals/r-devel/R-exts.html#Converting-a-package-to-use-registration
#useDynLib(genepop, .registration = TRUE, .fixes = "C_")
# why ? - Further steps recommended there are not compatible with the automatically generated RcppExports.cpp
useDynLib(genepop)
# excludes non alpha and exclude those that begin by 'R':
exportPattern("^[a-zA-QS-Z][[:alpha:]]+")
importFrom("Rcpp", "evalCpp")
importFrom("stringr", "str_extract_all")
S3method(summary, GP_outfile)
