| 56 | |
| 57 | |
| 58 | RCPP_MODULE(RcppModuleWorld) { |
| 59 | using namespace Rcpp; |
| 60 | |
| 61 | function("bar" , &bar ); |
| 62 | function("foo" , &foo ); |
| 63 | function("bla" , &bla ); |
| 64 | function("bla1" , &bla1); |
| 65 | function("bla2" , &bla2); |
| 66 | |
| 67 | class_<RcppModuleWorld>( "RcppModuleWorld") |
| 68 | .default_constructor() |
| 69 | .method("greet", &RcppModuleWorld::greet) |
| 70 | .method("set", &RcppModuleWorld::set) |
| 71 | ; |
| 72 | } |
| 73 | |
| 74 |
nothing calls this directly
no test coverage detected