-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRcppExports.cpp
More file actions
53 lines (47 loc) · 1.28 KB
/
RcppExports.cpp
File metadata and controls
53 lines (47 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include <Rcpp.h>
using namespace Rcpp;
#ifdef RCPP_USE_GLOBAL_ROSTREAM
Rcpp::Rostream<true>& Rcpp::Rcout = Rcpp::Rcpp_cout_get();
Rcpp::Rostream<false>& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get();
#endif
// foo
void foo();
RcppExport SEXP _array_test_foo() {
BEGIN_RCPP
Rcpp::RNGScope rcpp_rngScope_gen;
foo();
return R_NilValue;
END_RCPP
}
// bar
RObject bar();
RcppExport SEXP _array_test_bar() {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = Rcpp::wrap(bar());
return rcpp_result_gen;
END_RCPP
}
// baz
RObject baz();
RcppExport SEXP _array_test_baz() {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = Rcpp::wrap(baz());
return rcpp_result_gen;
END_RCPP
}
static const R_CallMethodDef CallEntries[] = {
{"_array_test_foo", (DL_FUNC) &_array_test_foo, 0},
{"_array_test_bar", (DL_FUNC) &_array_test_bar, 0},
{"_array_test_baz", (DL_FUNC) &_array_test_baz, 0},
{NULL, NULL, 0}
};
RcppExport void R_init_array_test(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
}