| 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 ) ; } |
nothing calls this directly
no outgoing calls
no test coverage detected