| 1195 | */ |
| 1196 | |
| 1197 | const TiXmlAttribute* TiXmlAttribute::Previous() const |
| 1198 | { |
| 1199 | // We are using knowledge of the sentinel. The sentinel |
| 1200 | // have a value or name. |
| 1201 | if ( prev->value.empty() && prev->name.empty() ) |
| 1202 | return 0; |
| 1203 | return prev; |
| 1204 | } |
| 1205 | |
| 1206 | /* |
| 1207 | TiXmlAttribute* TiXmlAttribute::Previous() |