MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / RcppModuleNum

Method RcppModuleNum

inst/tinytest/testRcppModule/src/Num.cpp:26–26  ·  view source on GitHub ↗

which have a getter/setter and getter

Source from the content-addressed store, hash-verified

24class RcppModuleNum { // simple class with two private variables
25public: // which have a getter/setter and getter
26 RcppModuleNum() : x(0.0), y(0){} ;
27
28 double getX() { return x ; }
29 void setX(double value){ x = value ; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected