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

Method CppInheritedProperty

inst/include/Rcpp/Module.h:455–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453 typedef CppProperty<Class> Base ;
454
455 CppInheritedProperty( CppProperty<Parent>* parent_property_ ) :
456 Base( parent_property_->docstring.c_str() ),
457 parent_property(parent_property_)
458 {}
459
460 SEXP get( Class* obj ){ return parent_property->get( (Parent*)obj ) ; }
461 void set( Class* obj, SEXP s) { parent_property->set( (Parent*)obj, s ) ; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected