| 195 | } |
| 196 | |
| 197 | inline void AddClass(const char* name_ , class_Base* cptr){ |
| 198 | classes.insert( CLASS_PAIR( name_ , cptr ) ) ; |
| 199 | } |
| 200 | |
| 201 | inline bool has_function( const std::string& m){ // #nocov start |
| 202 | return functions.find(m) != functions.end() ; |