| 367 | } |
| 368 | |
| 369 | const cParseNamedAttr* cParseNamedAttrList::Lookup(const TSTRING& tstrAttrName) const |
| 370 | { |
| 371 | constListIter i; |
| 372 | |
| 373 | for (i = mList.begin(); i != mList.end(); ++i) |
| 374 | { |
| 375 | if (0 == tstrAttrName.compare((*i)->GetName())) |
| 376 | { |
| 377 | return (*i); |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | return (NULL); |
| 382 | } |
no test coverage detected