Skip to content

Commit

Permalink
Remove dependencies to IrrXML.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimkulling committed Oct 8, 2020
1 parent 70bd5e2 commit ab266e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/usage/use_the_lib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ Notes for text importers
except if the file format has a strict definition, in which case you should always warn about spec violations.
But the general rule of thumb is <i>be strict in what you write and tolerant in what you accept</i>.
* Call Assimp::BaseImporter::ConvertToUTF8() before you parse anything to convert foreign encodings to UTF-8.
That's not necessary for XML importers, which must use the provided IrrXML for reading. </li>
That's not necessary for XML importers, which must use the provided XML-Parser for reading. </li>


.. _ai_bnote:
Expand All @@ -1436,9 +1436,9 @@ Utilities

Mixed stuff for internal use by loaders, mostly documented (most of them are already included by <i>AssimpPCH.h</i>):

* **ByteSwapper** (*ByteSwapper.h*) - manual byte swapping stuff for binary loaders.
* **ByteSwapper** (*ByteSwapper.h*) - manual byte swapping stuff for binary loaders.
* **StreamReader** (*StreamReader.h*) - safe, endianess-correct, binary reading.
* **IrrXML** (*irrXMLWrapper.h*) - for XML-parsing (SAX.
* **XmlParser** (*XmlParser.hh*) - The XML-Parser used in Asset-importer-Lib
* **CommentRemover** (*RemoveComments.h*) - remove single-line and multi-line comments from a text file.
* fast_atof, strtoul10, strtoul16, SkipSpaceAndLineEnd, SkipToNextToken .. large family of low-level
parsing functions, mostly declared in <i>fast_atof.h</i>, <i>StringComparison.h</i> and <i>ParsingUtils.h</i> (a collection that grew
Expand Down

0 comments on commit ab266e8

Please sign in to comment.