logo

libbulletml

Library of Bullet Markup Language (forked from https://shinh.skr.jp/libbulletml/index_en.html )git clone https://hacktivis.me/git/libbulletml.git

tinyxmlerror.cpp (672B)


  1. #include "tinyxml.h"
  2. // The goal of the seperate error file is to make the first
  3. // step towards localization. tinyxml (currently) only supports
  4. // latin-1, but at least the error messages could now be translated.
  5. //
  6. // It also cleans up the code a bit.
  7. const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] =
  8. {
  9. "No error",
  10. "Failed to open file",
  11. "Memory allocation failed.",
  12. "Error parsing Element.",
  13. "Failed to read Element name",
  14. "Error reading Element value.",
  15. "Error reading Attributes.",
  16. "Error: empty tag.",
  17. "Error reading end tag.",
  18. "Error parsing Unknown.",
  19. "Error parsing Comment.",
  20. "Error parsing Declaration.",
  21. };