static*/
| 180 | } |
| 181 | |
| 182 | /*static*/ bool TiXmlBase::StreamTo( TIXML_ISTREAM * in, int character, TIXML_STRING * tag ) |
| 183 | { |
| 184 | while ( in->good() ) |
| 185 | { |
| 186 | int c = in->peek(); |
| 187 | if ( c == character ) |
| 188 | return true; |
| 189 | |
| 190 | in->get(); |
| 191 | *tag += c; |
| 192 | } |
| 193 | return false; |
| 194 | } |
| 195 | #endif |
| 196 | |
| 197 | const TCHAR* TiXmlBase::ReadName( const TCHAR* p, TIXML_STRING * name ) |
nothing calls this directly
no outgoing calls
no test coverage detected