are there any constraints of TinyXML?
- on size of a document
- on size of attribute value or text
- number of nested elements
- level of nesting
- number of elements in the document
didn't find any of that info in the documentation.
thank you for your attention
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
There is no limitation on size, number of nested elements, number of attributes etc, the whole structure being a dynamic tree with elements allocated on the heap.
Now, this doesn't mean that you can open a gigabyte file : the time it will take to load this in memory will be so huge that it won't be usable, for the near future at least.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
are there any constraints of TinyXML?
- on size of a document
- on size of attribute value or text
- number of nested elements
- level of nesting
- number of elements in the document
didn't find any of that info in the documentation.
thank you for your attention
There is no limitation on size, number of nested elements, number of attributes etc, the whole structure being a dynamic tree with elements allocated on the heap.
Now, this doesn't mean that you can open a gigabyte file : the time it will take to load this in memory will be so huge that it won't be usable, for the near future at least.