| 1206 | */ |
| 1207 | |
| 1208 | const TiXmlAttribute* TiXmlAttribute::Previous() const |
| 1209 | { |
| 1210 | // We are using knowledge of the sentinel. The sentinel |
| 1211 | // have a value or name. |
| 1212 | if ( prev->value.empty() && prev->name.empty() ) |
| 1213 | return 0; |
| 1214 | return prev; |
| 1215 | } |
| 1216 | |
| 1217 | /* |
| 1218 | TiXmlAttribute* TiXmlAttribute::Previous() |