You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.2 KiB

6 years ago
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
8 years ago
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include <Rcpp.h>
using namespace Rcpp;
8 years ago
// incant_
DataFrame incant_(CharacterVector path, std::string magic_db);
6 years ago
RcppExport SEXP _wand_incant_(SEXP pathSEXP, SEXP magic_dbSEXP) {
8 years ago
BEGIN_RCPP
6 years ago
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
8 years ago
Rcpp::traits::input_parameter< CharacterVector >::type path(pathSEXP);
Rcpp::traits::input_parameter< std::string >::type magic_db(magic_dbSEXP);
6 years ago
rcpp_result_gen = Rcpp::wrap(incant_(path, magic_db));
return rcpp_result_gen;
8 years ago
END_RCPP
}
8 years ago
// lib_version
int lib_version();
6 years ago
RcppExport SEXP _wand_lib_version() {
8 years ago
BEGIN_RCPP
6 years ago
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = Rcpp::wrap(lib_version());
return rcpp_result_gen;
8 years ago
END_RCPP
}
6 years ago
static const R_CallMethodDef CallEntries[] = {
{"_wand_incant_", (DL_FUNC) &_wand_incant_, 2},
{"_wand_lib_version", (DL_FUNC) &_wand_lib_version, 0},
{NULL, NULL, 0}
};
RcppExport void R_init_wand(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
}