which have a getter/setter and getter
| 24 | class RcppModuleNum { // simple class with two private variables |
| 25 | public: // 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 ; } |
nothing calls this directly
no outgoing calls
no test coverage detected