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