static*/
| 167 | |
| 168 | #ifdef TIXML_USE_STL |
| 169 | /*static*/ bool TiXmlBase::StreamWhiteSpace( TIXML_ISTREAM * in, TIXML_STRING * tag ) |
| 170 | { |
| 171 | for( ;; ) |
| 172 | { |
| 173 | if ( !in->good() ) return false; |
| 174 | |
| 175 | int c = in->peek(); |
| 176 | if ( !IsWhiteSpace( c ) ) |
| 177 | return true; |
| 178 | *tag += in->get(); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | /*static*/ bool TiXmlBase::StreamTo( TIXML_ISTREAM * in, int character, TIXML_STRING * tag ) |
| 183 | { |
nothing calls this directly
no outgoing calls
no test coverage detected