| 222 | class Factory : public Factory_Base<Class> { |
| 223 | public: |
| 224 | Factory( Class* (*fun)(T...) ) : ptr_fun(fun){} |
| 225 | virtual Class* get_new( SEXP* args, int nargs ){ |
| 226 | return get_new( args, traits::make_index_sequence<sizeof...(T)>() ) ; |
| 227 | } |
nothing calls this directly
no outgoing calls
no test coverage detected