XMLPrinter optimization
Stream writing to buffer will be x5 faster
This commit is contained in:
committed by
Brad Anderson
parent
8b83b23876
commit
b2e08e4bc0
@@ -2224,6 +2224,9 @@ protected:
|
||||
*/
|
||||
virtual void PrintSpace( int depth );
|
||||
void Print( const char* format, ... );
|
||||
void Write( const char* data, size_t size );
|
||||
inline void Write( const char* data ) { Write( data, strlen( data ) ); }
|
||||
void Putc( char ch );
|
||||
|
||||
void SealElementIfJustOpened();
|
||||
bool _elementJustOpened;
|
||||
|
||||
Reference in New Issue
Block a user