| 27 | class SlotProxy : public GenericProxy<SlotProxy>{ |
| 28 | public: |
| 29 | SlotProxy( CLASS& v, const std::string& name) : parent(v), slot_name(Rf_install(name.c_str())) { |
| 30 | if( !R_has_slot( v, slot_name) ){ |
| 31 | throw no_such_slot(name); // #nocov |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | SlotProxy& operator=(const SlotProxy& rhs){ |
| 36 | set( rhs.get() ) ; |
nothing calls this directly
no outgoing calls
no test coverage detected