| 190 | } |
| 191 | |
| 192 | inline void Add( const char* name_ , CppFunction* ptr){ |
| 193 | R_RegisterCCallable( prefix.c_str(), name_, ptr->get_function_ptr() ) ; |
| 194 | functions.insert( FUNCTION_PAIR( name_ , ptr ) ) ; |
| 195 | } |
| 196 | |
| 197 | inline void AddClass(const char* name_ , class_Base* cptr){ |
| 198 | classes.insert( CLASS_PAIR( name_ , cptr ) ) ; |
no test coverage detected