| 183 | // --------- |
| 184 | |
| 185 | cvRepositoryData *cvRepository::GetObject( CONST84 char *name ) |
| 186 | { |
| 187 | Tcl_HashEntry *entryPtr; |
| 188 | cvRepositoryData *obj; |
| 189 | |
| 190 | entryPtr = Tcl_FindHashEntry( &table_, name ); |
| 191 | if ( entryPtr == NULL ) { |
| 192 | return NULL; |
| 193 | } else { |
| 194 | obj = (cvRepositoryData *) Tcl_GetHashValue( entryPtr ); |
| 195 | return obj; |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | |
| 200 | // ---- |
no outgoing calls
no test coverage detected