Only used by the document!
| 179 | private: |
| 180 | // Only used by the document! |
| 181 | TiXmlParsingData( const char* start, int _tabsize, int row, int col ) |
| 182 | { |
| 183 | assert( start ); |
| 184 | stamp = start; |
| 185 | tabsize = _tabsize; |
| 186 | cursor.row = row; |
| 187 | cursor.col = col; |
| 188 | } |
| 189 | |
| 190 | TiXmlCursor cursor; |
| 191 | const char* stamp; |
nothing calls this directly
no outgoing calls
no test coverage detected