| 209 | CppClass get_class( const std::string& cl ) ; |
| 210 | |
| 211 | class_Base* get_class_pointer(const std::string& cl){ |
| 212 | CLASS_MAP::iterator it = classes.find(cl) ; |
| 213 | if( it == classes.end() ) throw std::range_error( "no such class" ) ; |
| 214 | return it->second ; |
| 215 | } |
| 216 | |
| 217 | std::string name ; |
| 218 |
no test coverage detected