| 284 | } |
| 285 | |
| 286 | void cParseNamedAttrList::Clear() |
| 287 | { |
| 288 | for (std::list<cParseNamedAttr*>::iterator iter = mList.begin(); iter != mList.end(); ++iter) |
| 289 | { |
| 290 | delete *iter; |
| 291 | } |
| 292 | mList.clear(); |
| 293 | } |
| 294 | |
| 295 | void cParseNamedAttrList::Dump(cDebug& d) const |
| 296 | { |
no test coverage detected