| 153 | ~StrPair(); |
| 154 | |
| 155 | void Set( char* start, char* end, int flags ) { |
| 156 | TIXMLASSERT( start ); |
| 157 | TIXMLASSERT( end ); |
| 158 | Reset(); |
| 159 | _start = start; |
| 160 | _end = end; |
| 161 | _flags = flags | NEEDS_FLUSH; |
| 162 | } |
| 163 | |
| 164 | const char* GetStr(); |
| 165 |
no test coverage detected