| 1185 | |
| 1186 | |
| 1187 | const TiXmlAttribute* TiXmlAttribute::Next() const |
| 1188 | { |
| 1189 | // We are using knowledge of the sentinel. The sentinel |
| 1190 | // have a value or name. |
| 1191 | if ( next->value.empty() && next->name.empty() ) |
| 1192 | return 0; |
| 1193 | return next; |
| 1194 | } |
| 1195 | |
| 1196 | /* |
| 1197 | TiXmlAttribute* TiXmlAttribute::Next() |
no test coverage detected