| 1107 | } |
| 1108 | |
| 1109 | const TiXmlAttribute* TiXmlAttribute::Next() const |
| 1110 | { |
| 1111 | // We are using knowledge of the sentinel. The sentinel |
| 1112 | // have a value or name. |
| 1113 | if (next->value.empty() && next->name.empty()) |
| 1114 | return 0; |
| 1115 | return next; |
| 1116 | } |
| 1117 | |
| 1118 | /* |
| 1119 | TiXmlAttribute* TiXmlAttribute::Next() |
no test coverage detected