| 1921 | |
| 1922 | |
| 1923 | XMLUnknown* XMLDocument::NewUnknown( const char* str ) |
| 1924 | { |
| 1925 | TIXMLASSERT( sizeof( XMLUnknown ) == _commentPool.ItemSize() ); |
| 1926 | XMLUnknown* unk = new (_commentPool.Alloc()) XMLUnknown( this ); |
| 1927 | unk->_memPool = &_commentPool; |
| 1928 | unk->SetValue( str ); |
| 1929 | return unk; |
| 1930 | } |
| 1931 | |
| 1932 | static FILE* callfopen( const char* filepath, const char* mode ) |
| 1933 | { |
no test coverage detected