-
-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathrcpp_module.cpp
More file actions
53 lines (38 loc) · 964 Bytes
/
rcpp_module.cpp
File metadata and controls
53 lines (38 loc) · 964 Bytes
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
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
#include <Rcpp.h>
int bar(int x) {
return x*2;
}
double foo(int x, double y) {
return x * y;
}
void bla() {
Rprintf("hello\\n");
}
void bla1(int x) {
Rprintf("hello (x = %d)\\n", x);
}
void bla2(int x, double y) {
Rprintf("hello (x = %d, y = %5.2f)\\n", x, y);
}
class RcppClassWorld {
public:
RcppClassWorld() : msg("hello") {}
void set(std::string msg) { this->msg = msg; }
std::string greet() { return msg; }
private:
std::string msg;
};
RCPP_MODULE(RcppClassModule) {
using namespace Rcpp;
function("bar" , &bar );
function("foo" , &foo );
function("bla" , &bla );
function("bla1" , &bla1);
function("bla2" , &bla2);
class_<RcppClassWorld>( "RcppClassWorld" )
.default_constructor()
.method("greet", &RcppClassWorld::greet)
.method("set", &RcppClassWorld::set)
;
}