| 280 | double x ; |
| 281 | } ; |
| 282 | RCPP_MODULE(mod){ |
| 283 | class_<Foo>("Foo") |
| 284 | .constructor<double>() |
| 285 | .method( "get", &Foo::get ) |
| 286 | ; |
| 287 | } |
| 288 | |
| 289 | // [[Rcpp::export]] |
| 290 | SEXP map_int_Foo(){ |
nothing calls this directly
no outgoing calls
no test coverage detected