1 // Generated by cpp11: do not edit by hand
2 // clang-format off
3 
4 
5 #include "cpp11/declarations.hpp"
6 
7 // testcpp.cpp
8 int test_baseline_();
_progresstestcpp_test_baseline_()9 extern "C" SEXP _progresstestcpp_test_baseline_() {
10   BEGIN_CPP11
11     return cpp11::as_sexp(test_baseline_());
12   END_CPP11
13 }
14 // testcpp.cpp
15 int test_cli_();
_progresstestcpp_test_cli_()16 extern "C" SEXP _progresstestcpp_test_cli_() {
17   BEGIN_CPP11
18     return cpp11::as_sexp(test_cli_());
19   END_CPP11
20 }
21 // testcpp.cpp
22 int test_template_();
_progresstestcpp_test_template_()23 extern "C" SEXP _progresstestcpp_test_template_() {
24   BEGIN_CPP11
25     return cpp11::as_sexp(test_template_());
26   END_CPP11
27 }
28 
29 extern "C" {
30 /* .Call calls */
31 extern SEXP _progresstestcpp_test_baseline_();
32 extern SEXP _progresstestcpp_test_cli_();
33 extern SEXP _progresstestcpp_test_template_();
34 
35 static const R_CallMethodDef CallEntries[] = {
36     {"_progresstestcpp_test_baseline_", (DL_FUNC) &_progresstestcpp_test_baseline_, 0},
37     {"_progresstestcpp_test_cli_",      (DL_FUNC) &_progresstestcpp_test_cli_,      0},
38     {"_progresstestcpp_test_template_", (DL_FUNC) &_progresstestcpp_test_template_, 0},
39     {NULL, NULL, 0}
40 };
41 }
42 
R_init_progresstestcpp(DllInfo * dll)43 extern "C" void R_init_progresstestcpp(DllInfo* dll){
44   R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
45   R_useDynamicSymbols(dll, FALSE);
46   R_forceSymbols(dll, TRUE);
47 }
48