| 28 | typedef Rcpp::XPtr<class_Base> XP_Class ; |
| 29 | |
| 30 | class_Base() : name(), docstring(), enums(), parents() {} ; |
| 31 | class_Base(const char* name_, const char* doc) : |
| 32 | name(name_), docstring( doc == 0 ? "" : doc ), enums(), parents() {} ; |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected