| 562 | |
| 563 | template <typename FROM, typename TO> |
| 564 | void converter( const char* from, const char* to, TO (*fun)(FROM), const char* docstring = 0 ){ |
| 565 | std::string fun_name = internal::get_converter_name<FROM,TO>( from, to ) ; |
| 566 | function( fun_name.c_str(), fun, docstring ) ; |
| 567 | } |
| 568 | |
| 569 | class CppClass : public S4{ |
| 570 | typedef S4 Base; |
nothing calls this directly
no test coverage detected