tinyxml.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 /*
3 www.sourceforge.net/projects/tinyxml
4 Original code by Lee Thomason (www.grinninglizard.com)
5 
6 This software is provided 'as-is', without any express or implied
7 warranty. In no event will the authors be held liable for any
8 damages arising from the use of this software.
9 
10 Permission is granted to anyone to use this software for any
11 purpose, including commercial applications, and to alter it and
12 redistribute it freely, subject to the following restrictions:
13 
14 1. The origin of this software must not be misrepresented; you must
15 not claim that you wrote the original software. If you use this
16 software in a product, an acknowledgment in the product documentation
17 would be appreciated but is not required.
18 
19 2. Altered source versions must be plainly marked as such, and
20 must not be misrepresented as being the original software.
21 
22 3. This notice may not be removed or altered from any source
23 distribution.
24 */
25 
26 
27 #ifndef TINYXML_INCLUDED
28 #define TINYXML_INCLUDED
29 
30 #ifdef _MSC_VER
31 #pragma warning( push )
32 #pragma warning( disable : 4530 )
33 #pragma warning( disable : 4786 )
34 #endif
35 
36 #include <ctype.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>
40 #include <assert.h>
41 
42 // Help out windows:
43 #if defined( _DEBUG ) && !defined( DEBUG )
44 #define DEBUG
45 #endif
46 
47 #ifdef TIXML_USE_STL
48 #include <string>
49 #include <iostream>
50 #include <sstream>
51 #define TIXML_STRING std::string
52 #else
53 
54 #include "tinystr.h"
55 
56 #define TIXML_STRING TiXmlString
57 #endif
58 
59 // Deprecated library function hell. Compilers want to use the
60 // new safe versions. This probably doesn't fully address the problem,
61 // but it gets closer. There are too many compilers for me to fully
62 // test. If you get compilation troubles, undefine TIXML_SAFE
63 #define TIXML_SAFE
64 
65 #ifdef TIXML_SAFE
66 #if defined(_MSC_VER) && (_MSC_VER >= 1400)
67 // Microsoft visual studio, version 2005 and higher.
68 #define TIXML_SNPRINTF _snprintf_s
69 #define TIXML_SSCANF sscanf_s
70 #elif defined(_MSC_VER) && (_MSC_VER >= 1200)
71 // Microsoft visual studio, version 6 and higher.
72 //#pragma message( "Using _sn* functions." )
73 #define TIXML_SNPRINTF _snprintf
74 #define TIXML_SSCANF sscanf
75 #elif defined(__GNUC__) && (__GNUC__ >= 3)
76 // GCC version 3 and higher.s
77 //#warning( "Using sn* functions." )
78 #define TIXML_SNPRINTF snprintf
79 #define TIXML_SSCANF sscanf
80 #else
81 #define TIXML_SNPRINTF snprintf
82 #define TIXML_SSCANF sscanf
83 #endif
84 #endif
85 
86 class TiXmlDocument;
87 
88 class TiXmlElement;
89 
90 class TiXmlComment;
91 
92 class TiXmlUnknown;
93 
94 class TiXmlAttribute;
95 
96 class TiXmlText;
97 
98 class TiXmlDeclaration;
99 
100 class TiXmlParsingData;
101 
102 const int TIXML_MAJOR_VERSION = 2;
103 const int TIXML_MINOR_VERSION = 6;
104 const int TIXML_PATCH_VERSION = 2;
105 
106 /* Internal structure for tracking location of items
107  in the XML file.
108 */
110 {
112  { Clear(); }
113 
114  void Clear()
115  { row = col = -1; }
116 
117  int row; // 0 based.
118  int col; // 0 based.
119 };
120 
121 
142 {
143 public:
144  virtual ~TiXmlVisitor()
145  {}
146 
148  virtual bool VisitEnter(const TiXmlDocument & /*doc*/ )
149  { return true; }
150 
152  virtual bool VisitExit(const TiXmlDocument & /*doc*/ )
153  { return true; }
154 
156  virtual bool VisitEnter(const TiXmlElement & /*element*/, const TiXmlAttribute * /*firstAttribute*/ )
157  { return true; }
158 
160  virtual bool VisitExit(const TiXmlElement & /*element*/ )
161  { return true; }
162 
164  virtual bool Visit(const TiXmlDeclaration & /*declaration*/ )
165  { return true; }
166 
168  virtual bool Visit(const TiXmlText & /*text*/ )
169  { return true; }
170 
172  virtual bool Visit(const TiXmlComment & /*comment*/ )
173  { return true; }
174 
176  virtual bool Visit(const TiXmlUnknown & /*unknown*/ )
177  { return true; }
178 };
179 
180 // Only used by Attribute::Query functions
181 enum
182 {
186 };
187 
188 
189 // Used by the parsing routines.
191 {
195 };
196 
198 
222 {
223  friend class TiXmlNode;
224 
225  friend class TiXmlElement;
226 
227  friend class TiXmlDocument;
228 
229 public:
231  {}
232 
233  virtual ~TiXmlBase()
234  {}
235 
245  virtual void Print(FILE *cfile, int depth) const = 0;
246 
253  static void SetCondenseWhiteSpace(bool condense)
254  { condenseWhiteSpace = condense; }
255 
257  static bool IsWhiteSpaceCondensed()
258  { return condenseWhiteSpace; }
259 
278  int Row() const
279  { return location.row + 1; }
280 
281  int Column() const
282  { return location.col + 1; }
283 
284  void SetUserData(void *user)
285  { userData = user; }
286  void *GetUserData()
287  { return userData; }
288  const void *GetUserData() const
289  { return userData; }
290 
291  // Table that returs, for a given lead byte, the total number of bytes
292  // in the UTF-8 sequence.
293  static const int utf8ByteTable[256];
294 
295  virtual const char *Parse(const char *p,
296  TiXmlParsingData *data,
297  TiXmlEncoding encoding /*= TIXML_ENCODING_UNKNOWN */ ) = 0;
298 
302  static void EncodeString(const TIXML_STRING &str, TIXML_STRING *out);
303 
304  enum
305  {
322 
324  };
325 
326 protected:
327 
328  static const char *SkipWhiteSpace(const char *, TiXmlEncoding encoding);
329 
330  inline static bool IsWhiteSpace(char c)
331  {
332  return (isspace((unsigned char) c) || c == '\n' || c == '\r');
333  }
334 
335  inline static bool IsWhiteSpace(int c)
336  {
337  if (c < 256)
338  {
339  return IsWhiteSpace((char) c);
340  }
341  return false; // Again, only truly correct for English/Latin...but usually works.
342  }
343 
344 #ifdef TIXML_USE_STL
345  static bool StreamWhiteSpace( std::istream * in, TIXML_STRING * tag );
346  static bool StreamTo( std::istream * in, int character, TIXML_STRING * tag );
347 #endif
348 
349  /* Reads an XML name into the string provided. Returns
350  a pointer just past the last character of the name,
351  or 0 if the function has an error.
352  */
353  static const char *ReadName(const char *p, TIXML_STRING *name, TiXmlEncoding encoding);
354 
355  /* Reads text. Returns a pointer past the given end tag.
356  Wickedly complex options, but it keeps the (sensitive) code in one place.
357  */
358  static const char *ReadText(const char *in, // where to start
359  TIXML_STRING *text, // the string read
360  bool ignoreWhiteSpace, // whether to keep the white space
361  const char *endTag, // what ends this text
362  bool ignoreCase, // whether to ignore case in the end tag
363  TiXmlEncoding encoding); // the current encoding
364 
365  // If an entity has been found, transform it into a character.
366  static const char *GetEntity(const char *in, char *value, int *length, TiXmlEncoding encoding);
367 
368  // Get a character, while interpreting entities.
369  // The length can be from 0 to 4 bytes.
370  inline static const char *GetChar(const char *p, char *_value, int *length, TiXmlEncoding encoding)
371  {
372  assert(p);
374  {
375  *length = utf8ByteTable[*((const unsigned char *) p)];
376  assert(*length >= 0 && *length < 5);
377  }
378  else
379  {
380  *length = 1;
381  }
382 
383  if (*length == 1)
384  {
385  if (*p == '&')
386  {
387  return GetEntity(p, _value, length, encoding);
388  }
389  *_value = *p;
390  return p + 1;
391  }
392  else if (*length)
393  {
394  //strncpy( _value, p, *length ); // lots of compilers don't like this function (unsafe),
395  // and the null terminator isn't needed
396  for (int i = 0; p[i] && i < *length; ++i)
397  {
398  _value[i] = p[i];
399  }
400  return p + (*length);
401  }
402  else
403  {
404  // Not valid text.
405  return 0;
406  }
407  }
408 
409  // Return true if the next characters in the stream are any of the endTag sequences.
410  // Ignore case only works for english, and should only be relied on when comparing
411  // to English words: StringEqual( p, "version", true ) is fine.
412  static bool StringEqual(const char *p,
413  const char *endTag,
414  bool ignoreCase,
415  TiXmlEncoding encoding);
416 
418 
420 
422  void *userData;
423 
424  // None of these methods are reliable for any language except English.
425  // Good for approximation, not great for accuracy.
426  static int IsAlpha(unsigned char anyByte, TiXmlEncoding encoding);
427 
428  static int IsAlphaNum(unsigned char anyByte, TiXmlEncoding encoding);
429 
430  inline static int ToLower(int v, TiXmlEncoding encoding)
431  {
433  {
434  if (v < 128)
435  { return tolower(v); }
436  return v;
437  }
438  else
439  {
440  return tolower(v);
441  }
442  }
443 
444  static void ConvertUTF32ToUTF8(unsigned long input, char *output, int *length);
445 
446 private:
447  TiXmlBase(const TiXmlBase &); // not implemented.
448  void operator=(const TiXmlBase &base); // not allowed.
449 
450  struct Entity
451  {
452  const char *str;
453  unsigned int strLength;
454  char chr;
455  };
456  enum
457  {
458  NUM_ENTITY = 5,
459  MAX_ENTITY_LENGTH = 6
460 
461  };
462  static Entity entity[NUM_ENTITY];
463  static bool condenseWhiteSpace;
464 };
465 
466 
474 {
475  friend class TiXmlDocument;
476 
477  friend class TiXmlElement;
478 
479 public:
480 #ifdef TIXML_USE_STL
481 
485  friend std::istream& operator >> (std::istream& in, TiXmlNode& base);
486 
503  friend std::ostream& operator<< (std::ostream& out, const TiXmlNode& base);
504 
506 friend std::string& operator<< (std::string& out, const TiXmlNode& base );
507 
508 #endif
509 
513  enum NodeType
514  {
522  };
523 
524  virtual ~TiXmlNode();
525 
538  const char *Value() const
539  { return value.c_str(); }
540 
541 #ifdef TIXML_USE_STL
542 
546  const std::string& ValueStr() const { return value; }
547 #endif
548 
549  const TIXML_STRING &ValueTStr() const
550  { return value; }
551 
561  void SetValue(const char *_value)
562  { value = _value; }
563 
564 #ifdef TIXML_USE_STL
565  void SetValue( const std::string& _value ) { value = _value; }
567 #endif
568 
570  void Clear();
571 
574  { return parent; }
575 
576  const TiXmlNode *Parent() const
577  { return parent; }
578 
579  const TiXmlNode *FirstChild() const
580  { return firstChild; }
582  { return firstChild; }
583 
584  const TiXmlNode *FirstChild(
585  const char *value) const;
586  TiXmlNode *FirstChild(const char *_value)
588  {
589  // Call through to the const version - safe since nothing is changed. Exiting syntax: cast this to a const (always safe)
590  // call the method, cast the return back to non-const.
591  return const_cast< TiXmlNode * > ((const_cast< const TiXmlNode * >(this))->FirstChild(_value));
592  }
593 
594  const TiXmlNode *LastChild() const
595  { return lastChild; }
597  { return lastChild; }
598 
599  const TiXmlNode *LastChild(
600  const char *value) const;
601  TiXmlNode *LastChild(const char *_value)
602  {
603  return const_cast< TiXmlNode * > ((const_cast< const TiXmlNode * >(this))->LastChild(_value));
604  }
605 
606 #ifdef TIXML_USE_STL
607  const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); }
608  TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); }
609  const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ()); }
610  TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); }
611 #endif
612 
629  const TiXmlNode *IterateChildren(const TiXmlNode *previous) const;
630 
632  {
633  return const_cast< TiXmlNode * >((const_cast< const TiXmlNode * >(this))->IterateChildren(previous));
634  }
635 
637  const TiXmlNode *IterateChildren(const char *value, const TiXmlNode *previous) const;
638 
639  TiXmlNode *IterateChildren(const char *_value, const TiXmlNode *previous)
640  {
641  return const_cast< TiXmlNode * >((const_cast< const TiXmlNode * >(this))->IterateChildren(_value, previous));
642  }
643 
644 #ifdef TIXML_USE_STL
645  const TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const { return IterateChildren (_value.c_str (), previous); }
646  TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) { return IterateChildren (_value.c_str (), previous); }
647 #endif
648 
652  TiXmlNode *InsertEndChild(const TiXmlNode &addThis);
653 
654 
664  TiXmlNode *LinkEndChild(TiXmlNode *addThis);
665 
669  TiXmlNode *InsertBeforeChild(TiXmlNode *beforeThis, const TiXmlNode &addThis);
670 
674  TiXmlNode *InsertAfterChild(TiXmlNode *afterThis, const TiXmlNode &addThis);
675 
679  TiXmlNode *ReplaceChild(TiXmlNode *replaceThis, const TiXmlNode &withThis);
680 
682  bool RemoveChild(TiXmlNode *removeThis);
683 
685  const TiXmlNode *PreviousSibling() const
686  { return prev; }
687 
689  { return prev; }
690 
692  const TiXmlNode *PreviousSibling(const char *) const;
693 
694  TiXmlNode *PreviousSibling(const char *_prev)
695  {
696  return const_cast< TiXmlNode * >((const_cast< const TiXmlNode * >(this))->PreviousSibling(_prev));
697  }
698 
699 #ifdef TIXML_USE_STL
700  const TiXmlNode* PreviousSibling( const std::string& _value ) const { return PreviousSibling (_value.c_str ()); }
701  TiXmlNode* PreviousSibling( const std::string& _value ) { return PreviousSibling (_value.c_str ()); }
702  const TiXmlNode* NextSibling( const std::string& _value) const { return NextSibling (_value.c_str ()); }
703  TiXmlNode* NextSibling( const std::string& _value) { return NextSibling (_value.c_str ()); }
704 #endif
705 
707  const TiXmlNode *NextSibling() const
708  { return next; }
709 
711  { return next; }
712 
714  const TiXmlNode *NextSibling(const char *) const;
715 
716  TiXmlNode *NextSibling(const char *_next)
717  {
718  return const_cast< TiXmlNode * >((const_cast< const TiXmlNode * >(this))->NextSibling(_next));
719  }
720 
725  const TiXmlElement *NextSiblingElement() const;
726 
728  {
729  return const_cast< TiXmlElement * >((const_cast< const TiXmlNode * >(this))->NextSiblingElement());
730  }
731 
736  const TiXmlElement *NextSiblingElement(const char *) const;
737 
738  TiXmlElement *NextSiblingElement(const char *_next)
739  {
740  return const_cast< TiXmlElement * >((const_cast< const TiXmlNode * >(this))->NextSiblingElement(_next));
741  }
742 
743 #ifdef TIXML_USE_STL
744  const TiXmlElement* NextSiblingElement( const std::string& _value) const { return NextSiblingElement (_value.c_str ()); }
745  TiXmlElement* NextSiblingElement( const std::string& _value) { return NextSiblingElement (_value.c_str ()); }
746 #endif
747 
749  const TiXmlElement *FirstChildElement() const;
750 
752  {
753  return const_cast< TiXmlElement * >((const_cast< const TiXmlNode * >(this))->FirstChildElement());
754  }
755 
757  const TiXmlElement *FirstChildElement(const char *_value) const;
758 
759  TiXmlElement *FirstChildElement(const char *_value)
760  {
761  return const_cast< TiXmlElement * >((const_cast< const TiXmlNode * >(this))->FirstChildElement(_value));
762  }
763 
764 #ifdef TIXML_USE_STL
765  const TiXmlElement* FirstChildElement( const std::string& _value ) const { return FirstChildElement (_value.c_str ()); }
766  TiXmlElement* FirstChildElement( const std::string& _value ) { return FirstChildElement (_value.c_str ()); }
767 #endif
768 
773  int Type() const
774  { return type; }
775 
779  const TiXmlDocument *GetDocument() const;
780 
782  {
783  return const_cast< TiXmlDocument * >((const_cast< const TiXmlNode * >(this))->GetDocument());
784  }
785 
787  bool NoChildren() const
788  { return !firstChild; }
789 
790  virtual const TiXmlDocument *ToDocument() const
791  { return 0; }
792  virtual const TiXmlElement *ToElement() const
793  { return 0; }
794  virtual const TiXmlComment *ToComment() const
795  { return 0; }
796  virtual const TiXmlUnknown *ToUnknown() const
797  { return 0; }
798  virtual const TiXmlText *ToText() const
799  { return 0; }
800  virtual const TiXmlDeclaration *ToDeclaration() const
801  { return 0; }
802 
803  virtual TiXmlDocument *ToDocument()
804  { return 0; }
805  virtual TiXmlElement *ToElement()
806  { return 0; }
807  virtual TiXmlComment *ToComment()
808  { return 0; }
809  virtual TiXmlUnknown *ToUnknown()
810  { return 0; }
811  virtual TiXmlText *ToText()
812  { return 0; }
813  virtual TiXmlDeclaration *ToDeclaration()
814  { return 0; }
815 
819  virtual TiXmlNode *Clone() const = 0;
820 
843  virtual bool Accept(TiXmlVisitor *visitor) const = 0;
844 
845 protected:
846  TiXmlNode(NodeType _type);
847 
848  // Copy to the allocated object. Shared functionality between Clone, Copy constructor,
849  // and the assignment operator.
850  void CopyTo(TiXmlNode *target) const;
851 
852 #ifdef TIXML_USE_STL
853  // The real work of the input operator.
854 virtual void StreamIn( std::istream* in, TIXML_STRING* tag ) = 0;
855 #endif
856 
857  // Figure out what is at *p, and parse it. Returns null if it is not an xml node.
858  TiXmlNode *Identify(const char *start, TiXmlEncoding encoding);
859 
862 
865 
867 
870 
871 private:
872  TiXmlNode(const TiXmlNode &); // not implemented.
873  void operator=(const TiXmlNode &base); // not allowed.
874 };
875 
876 
885 {
886  friend class TiXmlAttributeSet;
887 
888 public:
891  {
892  document = 0;
893  prev = next = 0;
894  }
895 
896 #ifdef TIXML_USE_STL
897  TiXmlAttribute( const std::string& _name, const std::string& _value )
899  {
900  name = _name;
901  value = _value;
902  document = 0;
903  prev = next = 0;
904  }
905 #endif
906 
908  TiXmlAttribute(const char *_name, const char *_value)
909  {
910  name = _name;
911  value = _value;
912  document = 0;
913  prev = next = 0;
914  }
915 
916  const char *Name() const
917  { return name.c_str(); }
918  const char *Value() const
919  { return value.c_str(); }
920 #ifdef TIXML_USE_STL
921  const std::string& ValueStr() const { return value; }
922 #endif
923 
924  int IntValue() const;
925  double DoubleValue() const;
926 
927  // Get the tinyxml string representation
928  const TIXML_STRING &NameTStr() const
929  { return name; }
930 
940  int QueryIntValue(int *_value) const;
941 
943  int QueryDoubleValue(double *_value) const;
944 
945  void SetName(const char *_name)
946  { name = _name; }
947  void SetValue(const char *_value)
948  { value = _value; }
949 
950  void SetIntValue(int _value);
951  void SetDoubleValue(double _value);
952 
953 #ifdef TIXML_USE_STL
954  void SetName( const std::string& _name ) { name = _name; }
957  void SetValue( const std::string& _value ) { value = _value; }
958 #endif
959 
961  const TiXmlAttribute *Next() const;
962 
964  {
965  return const_cast< TiXmlAttribute * >((const_cast< const TiXmlAttribute * >(this))->Next());
966  }
967 
969  const TiXmlAttribute *Previous() const;
970 
972  {
973  return const_cast< TiXmlAttribute * >((const_cast< const TiXmlAttribute * >(this))->Previous());
974  }
975 
976  bool operator==(const TiXmlAttribute &rhs) const
977  { return rhs.name == name; }
978 
979  bool operator<(const TiXmlAttribute &rhs) const
980  { return name < rhs.name; }
981 
982  bool operator>(const TiXmlAttribute &rhs) const
983  { return name > rhs.name; }
984 
985  /* Attribute parsing starts: first letter of the name
986  returns: the next char after the value end quote
987  */
988  virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding);
989 
990  // Prints this Attribute to a FILE stream.
991  virtual void Print(FILE *cfile, int depth) const
992  {
993  Print(cfile, depth, 0);
994  }
995 
996  void Print(FILE *cfile, int depth, TIXML_STRING *str) const;
997 
998  // [internal use]
999  // Set the document pointer so the attribute can report errors.
1001  { document = doc; }
1002 
1003 private:
1004  TiXmlAttribute(const TiXmlAttribute &); // not implemented.
1005  void operator=(const TiXmlAttribute &base); // not allowed.
1006 
1007  TiXmlDocument *document; // A pointer back to a document, for error reporting.
1012 };
1013 
1014 
1015 /* A class used to manage a group of attributes.
1016  It is only used internally, both by the ELEMENT and the DECLARATION.
1017 
1018  The set can be changed transparent to the Element and Declaration
1019  classes that use it, but NOT transparent to the Attribute
1020  which has to implement a next() and previous() method. Which makes
1021  it a bit problematic and prevents the use of STL.
1022 
1023  This version is implemented with circular lists because:
1024  - I like circular lists
1025  - it demonstrates some independence from the (typical) doubly linked list.
1026 */
1028 {
1029 public:
1031 
1032  ~TiXmlAttributeSet();
1033 
1034  void Add(TiXmlAttribute *attribute);
1035 
1036  void Remove(TiXmlAttribute *attribute);
1037 
1038  const TiXmlAttribute *First() const
1039  { return (sentinel.next == &sentinel) ? 0 : sentinel.next; }
1040 
1042  { return (sentinel.next == &sentinel) ? 0 : sentinel.next; }
1043 
1044  const TiXmlAttribute *Last() const
1045  { return (sentinel.prev == &sentinel) ? 0 : sentinel.prev; }
1046 
1048  { return (sentinel.prev == &sentinel) ? 0 : sentinel.prev; }
1049 
1050  TiXmlAttribute *Find(const char *_name) const;
1051 
1052  TiXmlAttribute *FindOrCreate(const char *_name);
1053 
1054 # ifdef TIXML_USE_STL
1055  TiXmlAttribute* Find( const std::string& _name ) const;
1056  TiXmlAttribute* FindOrCreate( const std::string& _name );
1057 # endif
1058 
1059 
1060 private:
1061  //*ME: Because of hidden/disabled copy-construktor in TiXmlAttribute (sentinel-element),
1062  //*ME: this class must be also use a hidden/disabled copy-constructor !!!
1063  TiXmlAttributeSet(const TiXmlAttributeSet &); // not allowed
1064  void operator=(const TiXmlAttributeSet &); // not allowed (as TiXmlAttribute)
1065 
1067 };
1068 
1069 
1075 {
1076 public:
1078  TiXmlElement(const char *in_value);
1079 
1080 #ifdef TIXML_USE_STL
1081  TiXmlElement( const std::string& _value );
1083 #endif
1084 
1085  TiXmlElement(const TiXmlElement &);
1086 
1087  TiXmlElement &operator=(const TiXmlElement &base);
1088 
1089  virtual ~TiXmlElement();
1090 
1094  const char *Attribute(const char *name) const;
1095 
1102  const char *Attribute(const char *name, int *i) const;
1103 
1110  const char *Attribute(const char *name, double *d) const;
1111 
1119  int QueryIntAttribute(const char *name, int *_value) const;
1120 
1122  int QueryUnsignedAttribute(const char *name, unsigned *_value) const;
1123 
1128  int QueryBoolAttribute(const char *name, bool *_value) const;
1129 
1131  int QueryDoubleAttribute(const char *name, double *_value) const;
1132 
1134  int QueryFloatAttribute(const char *name, float *_value) const
1135  {
1136  double d;
1137  int result = QueryDoubleAttribute(name, &d);
1138  if (result == TIXML_SUCCESS)
1139  {
1140  *_value = (float) d;
1141  }
1142  return result;
1143  }
1144 
1145 #ifdef TIXML_USE_STL
1146  int QueryStringAttribute( const char* name, std::string* _value ) const {
1148  const char* cstr = Attribute( name );
1149  if ( cstr ) {
1150  *_value = std::string( cstr );
1151  return TIXML_SUCCESS;
1152  }
1153  return TIXML_NO_ATTRIBUTE;
1154  }
1155 
1164  template< typename T > int QueryValueAttribute( const std::string& name, T* outValue ) const
1165  {
1166  const TiXmlAttribute* node = attributeSet.Find( name );
1167  if ( !node )
1168  return TIXML_NO_ATTRIBUTE;
1169 
1170  std::stringstream sstream( node->ValueStr() );
1171  sstream >> *outValue;
1172  if ( !sstream.fail() )
1173  return TIXML_SUCCESS;
1174  return TIXML_WRONG_TYPE;
1175  }
1176 
1177  int QueryValueAttribute( const std::string& name, std::string* outValue ) const
1178  {
1179  const TiXmlAttribute* node = attributeSet.Find( name );
1180  if ( !node )
1181  return TIXML_NO_ATTRIBUTE;
1182  *outValue = node->ValueStr();
1183  return TIXML_SUCCESS;
1184  }
1185 #endif
1186 
1190  void SetAttribute(const char *name, const char *_value);
1191 
1192 #ifdef TIXML_USE_STL
1193  const std::string* Attribute( const std::string& name ) const;
1194  const std::string* Attribute( const std::string& name, int* i ) const;
1195  const std::string* Attribute( const std::string& name, double* d ) const;
1196  int QueryIntAttribute( const std::string& name, int* _value ) const;
1197  int QueryDoubleAttribute( const std::string& name, double* _value ) const;
1198 
1200  void SetAttribute( const std::string& name, const std::string& _value );
1202  void SetAttribute( const std::string& name, int _value );
1204  void SetDoubleAttribute( const std::string& name, double value );
1205 #endif
1206 
1210  void SetAttribute(const char *name, int value);
1211 
1215  void SetDoubleAttribute(const char *name, double value);
1216 
1219  void RemoveAttribute(const char *name);
1220 
1221 #ifdef TIXML_USE_STL
1222  void RemoveAttribute( const std::string& name ) { RemoveAttribute (name.c_str ()); }
1223 #endif
1224 
1225  const TiXmlAttribute *FirstAttribute() const
1226  { return attributeSet.First(); }
1228  { return attributeSet.First(); }
1229 
1230  const TiXmlAttribute *LastAttribute() const
1231  { return attributeSet.Last(); }
1233  { return attributeSet.Last(); }
1234 
1267  const char *GetText() const;
1268 
1270  virtual TiXmlNode *Clone() const;
1271 
1272  // Print the Element to a FILE stream.
1273  virtual void Print(FILE *cfile, int depth) const;
1274 
1275  /* Attribtue parsing starts: next char past '<'
1276  returns: next char past '>'
1277  */
1278  virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding);
1279 
1280  virtual const TiXmlElement *ToElement() const
1281  { return this; }
1282  virtual TiXmlElement *ToElement()
1283  { return this; }
1284 
1287  virtual bool Accept(TiXmlVisitor *visitor) const;
1288 
1289 protected:
1290 
1291  void CopyTo(TiXmlElement *target) const;
1292 
1293  void ClearThis(); // like clear, but initializes 'this' object as well
1294 
1295  // Used to be public [internal use]
1296 #ifdef TIXML_USE_STL
1297  virtual void StreamIn( std::istream * in, TIXML_STRING * tag );
1298 #endif
1299 
1300  /* [internal use]
1301  Reads the "value" of the element -- another element, or text.
1302  This should terminate with the current end tag.
1303  */
1304  const char *ReadValue(const char *in, TiXmlParsingData *prevData, TiXmlEncoding encoding);
1305 
1306 private:
1308 };
1309 
1310 
1314 {
1315 public:
1317  TiXmlComment() : TiXmlNode(TiXmlNode::TINYXML_COMMENT)
1318  {}
1319 
1321  TiXmlComment(const char *_value) : TiXmlNode(TiXmlNode::TINYXML_COMMENT)
1322  {
1323  SetValue(_value);
1324  }
1325 
1326  TiXmlComment(const TiXmlComment &);
1327 
1328  TiXmlComment &operator=(const TiXmlComment &base);
1329 
1330  virtual ~TiXmlComment()
1331  {}
1332 
1334  virtual TiXmlNode *Clone() const;
1335 
1336  // Write this Comment to a FILE stream.
1337  virtual void Print(FILE *cfile, int depth) const;
1338 
1339  /* Attribtue parsing starts: at the ! of the !--
1340  returns: next char past '>'
1341  */
1342  virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding);
1343 
1344  virtual const TiXmlComment *ToComment() const
1345  { return this; }
1346  virtual TiXmlComment *ToComment()
1347  { return this; }
1348 
1351  virtual bool Accept(TiXmlVisitor *visitor) const;
1352 
1353 protected:
1354  void CopyTo(TiXmlComment *target) const;
1355 
1356  // used to be public
1357 #ifdef TIXML_USE_STL
1358  virtual void StreamIn( std::istream * in, TIXML_STRING * tag );
1359 #endif
1360 // virtual void StreamOut( TIXML_OSTREAM * out ) const;
1361 
1362 private:
1363 
1364 };
1365 
1366 
1373 {
1374  friend class TiXmlElement;
1375 
1376 public:
1381  TiXmlText(const char *initValue) : TiXmlNode(TiXmlNode::TINYXML_TEXT)
1382  {
1383  SetValue(initValue);
1384  cdata = false;
1385  }
1386 
1387  virtual ~TiXmlText()
1388  {}
1389 
1390 #ifdef TIXML_USE_STL
1391  TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT)
1393  {
1394  SetValue( initValue );
1395  cdata = false;
1396  }
1397 #endif
1398 
1400  { copy.CopyTo(this); }
1401 
1403  {
1404  base.CopyTo(this);
1405  return *this;
1406  }
1407 
1408  // Write this text object to a FILE stream.
1409  virtual void Print(FILE *cfile, int depth) const;
1410 
1412  bool CDATA() const
1413  { return cdata; }
1414 
1416  void SetCDATA(bool _cdata)
1417  { cdata = _cdata; }
1418 
1419  virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding);
1420 
1421  virtual const TiXmlText *ToText() const
1422  { return this; }
1423  virtual TiXmlText *ToText()
1424  { return this; }
1425 
1428  virtual bool Accept(TiXmlVisitor *content) const;
1429 
1430 protected :
1432  virtual TiXmlNode *Clone() const;
1433 
1434  void CopyTo(TiXmlText *target) const;
1435 
1436  bool Blank() const; // returns true if all white space and new lines
1437  // [internal use]
1438 #ifdef TIXML_USE_STL
1439  virtual void StreamIn( std::istream * in, TIXML_STRING * tag );
1440 #endif
1441 
1442 private:
1443  bool cdata; // true if this should be input and output as a CDATA style text element
1444 };
1445 
1446 
1461 {
1462 public:
1464  TiXmlDeclaration() : TiXmlNode(TiXmlNode::TINYXML_DECLARATION)
1465  {}
1466 
1467 #ifdef TIXML_USE_STL
1468  TiXmlDeclaration( const std::string& _version,
1470  const std::string& _encoding,
1471  const std::string& _standalone );
1472 #endif
1473 
1475  TiXmlDeclaration(const char *_version,
1476  const char *_encoding,
1477  const char *_standalone);
1478 
1479  TiXmlDeclaration(const TiXmlDeclaration &copy);
1480 
1482 
1484  {}
1485 
1487  const char *Version() const
1488  { return version.c_str(); }
1489 
1491  const char *Encoding() const
1492  { return encoding.c_str(); }
1493 
1495  const char *Standalone() const
1496  { return standalone.c_str(); }
1497 
1499  virtual TiXmlNode *Clone() const;
1500 
1501  // Print this declaration to a FILE stream.
1502  virtual void Print(FILE *cfile, int depth, TIXML_STRING *str) const;
1503 
1504  virtual void Print(FILE *cfile, int depth) const
1505  {
1506  Print(cfile, depth, 0);
1507  }
1508 
1509  virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding);
1510 
1511  virtual const TiXmlDeclaration *ToDeclaration() const
1512  { return this; }
1513  virtual TiXmlDeclaration *ToDeclaration()
1514  { return this; }
1515 
1518  virtual bool Accept(TiXmlVisitor *visitor) const;
1519 
1520 protected:
1521  void CopyTo(TiXmlDeclaration *target) const;
1522  // used to be public
1523 #ifdef TIXML_USE_STL
1524  virtual void StreamIn( std::istream * in, TIXML_STRING * tag );
1525 #endif
1526 
1527 private:
1528 
1532 };
1533 
1534 
1543 {
1544 public:
1545  TiXmlUnknown() : TiXmlNode(TiXmlNode::TINYXML_UNKNOWN)
1546  {}
1547 
1548  virtual ~TiXmlUnknown()
1549  {}
1550 
1551  TiXmlUnknown(const TiXmlUnknown &copy) : TiXmlNode(TiXmlNode::TINYXML_UNKNOWN)
1552  { copy.CopyTo(this); }
1553 
1555  {
1556  copy.CopyTo(this);
1557  return *this;
1558  }
1559 
1561  virtual TiXmlNode *Clone() const;
1562 
1563  // Print this Unknown to a FILE stream.
1564  virtual void Print(FILE *cfile, int depth) const;
1565 
1566  virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding);
1567 
1568  virtual const TiXmlUnknown *ToUnknown() const
1569  { return this; }
1570  virtual TiXmlUnknown *ToUnknown()
1571  { return this; }
1572 
1575  virtual bool Accept(TiXmlVisitor *content) const;
1576 
1577 protected:
1578  void CopyTo(TiXmlUnknown *target) const;
1579 
1580 #ifdef TIXML_USE_STL
1581  virtual void StreamIn( std::istream * in, TIXML_STRING * tag );
1582 #endif
1583 
1584 private:
1585 
1586 };
1587 
1588 
1594 {
1595 public:
1597  TiXmlDocument();
1598 
1600  TiXmlDocument(const char *documentName);
1601 
1602 #ifdef TIXML_USE_STL
1603  TiXmlDocument( const std::string& documentName );
1605 #endif
1606 
1607  TiXmlDocument(const TiXmlDocument &copy);
1608 
1609  TiXmlDocument &operator=(const TiXmlDocument &copy);
1610 
1611  virtual ~TiXmlDocument()
1612  {}
1613 
1618  bool LoadFile(TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING);
1619 
1621  bool SaveFile() const;
1622 
1624  bool LoadFile(const char *filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING);
1625 
1627  bool SaveFile(const char *filename) const;
1628 
1634  bool LoadFile(FILE *, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING);
1635 
1637  bool SaveFile(FILE *) const;
1638 
1639 #ifdef TIXML_USE_STL
1640  bool LoadFile( const std::string& filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING )
1641  {
1642  return LoadFile( filename.c_str(), encoding );
1643  }
1644  bool SaveFile( const std::string& filename ) const
1645  {
1646  return SaveFile( filename.c_str() );
1647  }
1648 #endif
1649 
1654  virtual const char *Parse(const char *p, TiXmlParsingData *data = 0, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING);
1655 
1660  const TiXmlElement *RootElement() const
1661  { return FirstChildElement(); }
1662 
1664  { return FirstChildElement(); }
1665 
1671  bool Error() const
1672  { return error; }
1673 
1675  const char *ErrorDesc() const
1676  { return errorDesc.c_str(); }
1677 
1681  int ErrorId() const
1682  { return errorId; }
1683 
1691  int ErrorRow() const
1692  { return errorLocation.row + 1; }
1693 
1694  int ErrorCol() const
1695  { return errorLocation.col + 1; }
1696 
1721  void SetTabSize(int _tabsize)
1722  { tabsize = _tabsize; }
1723 
1724  int TabSize() const
1725  { return tabsize; }
1726 
1730  void ClearError()
1731  {
1732  error = false;
1733  errorId = 0;
1734  errorDesc = "";
1735  errorLocation.row = errorLocation.col = 0;
1736  //errorLocation.last = 0;
1737  }
1738 
1740  void Print() const
1741  { Print(stdout, 0); }
1742 
1743  /* Write the document to a string using formatted printing ("pretty print"). This
1744  will allocate a character array (new char[]) and return it as a pointer. The
1745  calling code pust call delete[] on the return char* to avoid a memory leak.
1746  */
1747  //char* PrintToMemory() const;
1748 
1750  virtual void Print(FILE *cfile, int depth = 0) const;
1751 
1752  // [internal use]
1753  void SetError(int err, const char *errorLocation, TiXmlParsingData *prevData, TiXmlEncoding encoding);
1754 
1755  virtual const TiXmlDocument *ToDocument() const
1756  { return this; }
1757  virtual TiXmlDocument *ToDocument()
1758  { return this; }
1759 
1762  virtual bool Accept(TiXmlVisitor *content) const;
1763 
1764 protected :
1765  // [internal use]
1766  virtual TiXmlNode *Clone() const;
1767 
1768 #ifdef TIXML_USE_STL
1769  virtual void StreamIn( std::istream * in, TIXML_STRING * tag );
1770 #endif
1771 
1772 private:
1773  void CopyTo(TiXmlDocument *target) const;
1774 
1775  bool error;
1776  int errorId;
1778  int tabsize;
1780  bool useMicrosoftBOM; // the UTF-8 BOM were found when read. Note this, and try to write.
1781 };
1782 
1783 
1865 {
1866 public:
1869  { this->node = _node; }
1870 
1873  { this->node = ref.node; }
1874 
1876  {
1877  if (&ref != this)
1878  { this->node = ref.node; }
1879  return *this;
1880  }
1881 
1883  TiXmlHandle FirstChild() const;
1884 
1886  TiXmlHandle FirstChild(const char *value) const;
1887 
1889  TiXmlHandle FirstChildElement() const;
1890 
1892  TiXmlHandle FirstChildElement(const char *value) const;
1893 
1897  TiXmlHandle Child(const char *value, int index) const;
1898 
1902  TiXmlHandle Child(int index) const;
1903 
1908  TiXmlHandle ChildElement(const char *value, int index) const;
1909 
1914  TiXmlHandle ChildElement(int index) const;
1915 
1916 #ifdef TIXML_USE_STL
1917  TiXmlHandle FirstChild( const std::string& _value ) const { return FirstChild( _value.c_str() ); }
1918  TiXmlHandle FirstChildElement( const std::string& _value ) const { return FirstChildElement( _value.c_str() ); }
1919 
1920  TiXmlHandle Child( const std::string& _value, int index ) const { return Child( _value.c_str(), index ); }
1921  TiXmlHandle ChildElement( const std::string& _value, int index ) const { return ChildElement( _value.c_str(), index ); }
1922 #endif
1923 
1927  { return node; }
1928 
1932  { return ((node && node->ToElement()) ? node->ToElement() : 0); }
1933 
1937  { return ((node && node->ToText()) ? node->ToText() : 0); }
1938 
1942  { return ((node && node->ToUnknown()) ? node->ToUnknown() : 0); }
1943 
1947  TiXmlNode *Node() const
1948  { return ToNode(); }
1949 
1954  { return ToElement(); }
1955 
1959  TiXmlText *Text() const
1960  { return ToText(); }
1961 
1966  { return ToUnknown(); }
1967 
1968 private:
1970 };
1971 
1972 
1993 {
1994 public:
1995  TiXmlPrinter() : depth(0), simpleTextPrint(false),
1996  buffer(), indent(" "), lineBreak("\n")
1997  {}
1998 
1999  virtual bool VisitEnter(const TiXmlDocument &doc);
2000 
2001  virtual bool VisitExit(const TiXmlDocument &doc);
2002 
2003  virtual bool VisitEnter(const TiXmlElement &element, const TiXmlAttribute *firstAttribute);
2004 
2005  virtual bool VisitExit(const TiXmlElement &element);
2006 
2007  virtual bool Visit(const TiXmlDeclaration &declaration);
2008 
2009  virtual bool Visit(const TiXmlText &text);
2010 
2011  virtual bool Visit(const TiXmlComment &comment);
2012 
2013  virtual bool Visit(const TiXmlUnknown &unknown);
2014 
2018  void SetIndent(const char *_indent)
2019  { indent = _indent ? _indent : ""; }
2020 
2022  const char *Indent()
2023  { return indent.c_str(); }
2024 
2029  void SetLineBreak(const char *_lineBreak)
2030  { lineBreak = _lineBreak ? _lineBreak : ""; }
2031 
2033  const char *LineBreak()
2034  { return lineBreak.c_str(); }
2035 
2040  {
2041  indent = "";
2042  lineBreak = "";
2043  }
2044 
2046  const char *CStr()
2047  { return buffer.c_str(); }
2048 
2050  size_t Size()
2051  { return buffer.size(); }
2052 
2053 #ifdef TIXML_USE_STL
2054  const std::string& Str() { return buffer; }
2056 #endif
2057 
2058 private:
2059  void DoIndent()
2060  {
2061  for (int i = 0; i < depth; ++i)
2062  buffer += indent;
2063  }
2064 
2066  {
2067  buffer += lineBreak;
2068  }
2069 
2070  int depth;
2075 };
2076 
2077 
2078 #ifdef _MSC_VER
2079 #pragma warning( pop )
2080 #endif
2081 
2082 #endif
TiXmlElement::attributeSet
TiXmlAttributeSet attributeSet
Definition: tinyxml.h:1307
TiXmlElement
Definition: tinyxml.h:1074
TiXmlBase::ConvertUTF32ToUTF8
static void ConvertUTF32ToUTF8(unsigned long input, char *output, int *length)
Definition: tinyxmlparser.cpp:88
TiXmlNode::LastChild
const TiXmlNode * LastChild() const
Definition: tinyxml.h:594
TiXmlBase::Parse
virtual const char * Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding)=0
TiXmlDocument::Print
void Print() const
Definition: tinyxml.h:1740
TiXmlVisitor::VisitExit
virtual bool VisitExit(const TiXmlElement &)
Visit an element.
Definition: tinyxml.h:160
TiXmlDocument
Definition: tinyxml.h:1593
add_sick_scan_base_header.content
string content
Definition: add_sick_scan_base_header.py:41
TiXmlPrinter::SetIndent
void SetIndent(const char *_indent)
Definition: tinyxml.h:2018
TiXmlVisitor
Definition: tinyxml.h:141
TiXmlNode::ValueTStr
const TIXML_STRING & ValueTStr() const
Definition: tinyxml.h:549
multiscan_pcap_player.indent
indent
Definition: multiscan_pcap_player.py:252
TiXmlNode::IterateChildren
TiXmlNode * IterateChildren(const char *_value, const TiXmlNode *previous)
Definition: tinyxml.h:639
TIXML_WRONG_TYPE
@ TIXML_WRONG_TYPE
Definition: tinyxml.h:185
TiXmlDocument::TabSize
int TabSize() const
Definition: tinyxml.h:1724
TiXmlDeclaration::~TiXmlDeclaration
virtual ~TiXmlDeclaration()
Definition: tinyxml.h:1483
TiXmlAttributeSet::First
TiXmlAttribute * First()
Definition: tinyxml.h:1041
TiXmlBase::IsWhiteSpace
static bool IsWhiteSpace(char c)
Definition: tinyxml.h:330
TiXmlDocument::~TiXmlDocument
virtual ~TiXmlDocument()
Definition: tinyxml.h:1611
TiXmlBase::TIXML_ERROR_PARSING_EMPTY
@ TIXML_ERROR_PARSING_EMPTY
Definition: tinyxml.h:313
TiXmlElement::Accept
virtual bool Accept(TiXmlVisitor *visitor) const
Definition: tinyxml.cpp:875
TiXmlDocument::errorDesc
TIXML_STRING errorDesc
Definition: tinyxml.h:1777
TiXmlBase::TiXmlNode
friend class TiXmlNode
Definition: tinyxml.h:223
TiXmlAttribute::prev
TiXmlAttribute * prev
Definition: tinyxml.h:1010
TiXmlBase::Entity::str
const char * str
Definition: tinyxml.h:452
TiXmlText::CopyTo
void CopyTo(TiXmlText *target) const
Definition: tinyxml.cpp:1353
TiXmlHandle::TiXmlHandle
TiXmlHandle(const TiXmlHandle &ref)
Copy constructor.
Definition: tinyxml.h:1872
TiXmlNode::type
NodeType type
Definition: tinyxml.h:861
TIXML_ENCODING_UTF8
@ TIXML_ENCODING_UTF8
Definition: tinyxml.h:193
TiXmlNode::value
TIXML_STRING value
Definition: tinyxml.h:866
TiXmlHandle::Text
TiXmlText * Text() const
Definition: tinyxml.h:1959
TiXmlElement::LastAttribute
TiXmlAttribute * LastAttribute()
Definition: tinyxml.h:1232
TiXmlNode::NextSibling
TiXmlNode * NextSibling(const char *_next)
Definition: tinyxml.h:716
TiXmlHandle
Definition: tinyxml.h:1864
TiXmlText::SetCDATA
void SetCDATA(bool _cdata)
Turns on or off a CDATA representation of text.
Definition: tinyxml.h:1416
TiXmlVisitor::Visit
virtual bool Visit(const TiXmlDeclaration &)
Visit a declaration.
Definition: tinyxml.h:164
TiXmlNode::ReplaceChild
TiXmlNode * ReplaceChild(TiXmlNode *replaceThis, const TiXmlNode &withThis)
Definition: tinyxml.cpp:296
test_server.type
type
Definition: test_server.py:210
TiXmlNode::FirstChild
TiXmlNode * FirstChild()
Definition: tinyxml.h:581
TiXmlNode::Type
int Type() const
Definition: tinyxml.h:773
TiXmlDeclaration::version
TIXML_STRING version
Definition: tinyxml.h:1529
TiXmlText::TiXmlText
TiXmlText(const char *initValue)
Definition: tinyxml.h:1381
TiXmlCursor::Clear
void Clear()
Definition: tinyxml.h:114
TiXmlUnknown::CopyTo
void CopyTo(TiXmlUnknown *target) const
Definition: tinyxml.cpp:1476
TiXmlPrinter::Size
size_t Size()
Return the length of the result string.
Definition: tinyxml.h:2050
TiXmlBase::TIXML_ERROR_READING_END_TAG
@ TIXML_ERROR_READING_END_TAG
Definition: tinyxml.h:314
TiXmlPrinter::simpleTextPrint
bool simpleTextPrint
Definition: tinyxml.h:2071
TiXmlBase::GetEntity
static const char * GetEntity(const char *in, char *value, int *length, TiXmlEncoding encoding)
Definition: tinyxmlparser.cpp:438
TiXmlNode::TINYXML_ELEMENT
@ TINYXML_ELEMENT
Definition: tinyxml.h:516
TiXmlElement::QueryFloatAttribute
int QueryFloatAttribute(const char *name, float *_value) const
QueryFloatAttribute examines the attribute - see QueryIntAttribute().
Definition: tinyxml.h:1134
TiXmlDeclaration::encoding
TIXML_STRING encoding
Definition: tinyxml.h:1530
TIXML_ENCODING_UNKNOWN
@ TIXML_ENCODING_UNKNOWN
Definition: tinyxml.h:192
TiXmlBase::Entity
Definition: tinyxml.h:450
TIXML_NO_ATTRIBUTE
@ TIXML_NO_ATTRIBUTE
Definition: tinyxml.h:184
TiXmlVisitor::~TiXmlVisitor
virtual ~TiXmlVisitor()
Definition: tinyxml.h:144
TiXmlNode::NextSibling
const TiXmlNode * NextSibling() const
Navigate to a sibling node.
Definition: tinyxml.h:707
TiXmlDocument::errorId
int errorId
Definition: tinyxml.h:1776
TiXmlVisitor::Visit
virtual bool Visit(const TiXmlText &)
Visit a text node.
Definition: tinyxml.h:168
msgpack11::operator<<
std::ostream & operator<<(std::ostream &os, const MsgPack &msgpack)
Definition: msgpack11.cpp:371
TiXmlAttribute::name
TIXML_STRING name
Definition: tinyxml.h:1008
TiXmlNode::~TiXmlNode
virtual ~TiXmlNode()
Definition: tinyxml.cpp:147
TiXmlUnknown::TiXmlUnknown
TiXmlUnknown()
Definition: tinyxml.h:1545
TiXmlBase::EncodeString
static void EncodeString(const TIXML_STRING &str, TIXML_STRING *out)
Definition: tinyxml.cpp:52
TiXmlCursor::TiXmlCursor
TiXmlCursor()
Definition: tinyxml.h:111
TiXmlNode::NoChildren
bool NoChildren() const
Returns true if this node has no children.
Definition: tinyxml.h:787
TiXmlAttribute::Print
virtual void Print(FILE *cfile, int depth) const
Definition: tinyxml.h:991
TiXmlDocument::Error
bool Error() const
Definition: tinyxml.h:1671
TiXmlHandle::ToNode
TiXmlNode * ToNode() const
Definition: tinyxml.h:1926
TiXmlNode::FirstChildElement
TiXmlElement * FirstChildElement(const char *_value)
Definition: tinyxml.h:759
TiXmlBase::TIXML_ERROR_PARSING_CDATA
@ TIXML_ERROR_PARSING_CDATA
Definition: tinyxml.h:320
TiXmlNode::LinkEndChild
TiXmlNode * LinkEndChild(TiXmlNode *addThis)
Definition: tinyxml.cpp:186
TiXmlBase::TIXML_ERROR_READING_ATTRIBUTES
@ TIXML_ERROR_READING_ATTRIBUTES
Definition: tinyxml.h:312
TiXmlHandle::Element
TiXmlElement * Element() const
Definition: tinyxml.h:1953
TiXmlDeclaration::Encoding
const char * Encoding() const
Encoding. Will return an empty string if none was found.
Definition: tinyxml.h:1491
TiXmlNode::CopyTo
void CopyTo(TiXmlNode *target) const
Definition: tinyxml.cpp:161
TiXmlBase::Entity::strLength
unsigned int strLength
Definition: tinyxml.h:453
TiXmlUnknown::operator=
TiXmlUnknown & operator=(const TiXmlUnknown &copy)
Definition: tinyxml.h:1554
TiXmlDeclaration::Version
const char * Version() const
Version. Will return an empty string if none was found.
Definition: tinyxml.h:1487
TiXmlBase::TIXML_ERROR_READING_ELEMENT_VALUE
@ TIXML_ERROR_READING_ELEMENT_VALUE
Definition: tinyxml.h:311
TIXML_PATCH_VERSION
const int TIXML_PATCH_VERSION
Definition: tinyxml.h:104
TiXmlNode::TiXmlElement
friend class TiXmlElement
Definition: tinyxml.h:477
TiXmlNode::PreviousSibling
const TiXmlNode * PreviousSibling() const
Navigate to a sibling node.
Definition: tinyxml.h:685
TiXmlBase::TiXmlBase
TiXmlBase()
Definition: tinyxml.h:230
TiXmlDocument::ErrorRow
int ErrorRow() const
Definition: tinyxml.h:1691
TiXmlNode::GetDocument
const TiXmlDocument * GetDocument() const
Definition: tinyxml.cpp:512
TiXmlComment::TiXmlComment
TiXmlComment(const char *_value)
Construct a comment from text.
Definition: tinyxml.h:1321
TiXmlDeclaration::TiXmlDeclaration
TiXmlDeclaration()
Construct an empty declaration.
Definition: tinyxml.h:1464
TiXmlDocument::ClearError
void ClearError()
Definition: tinyxml.h:1730
TiXmlPrinter::Indent
const char * Indent()
Query the indention string.
Definition: tinyxml.h:2022
TiXmlBase::TIXML_ERROR_FAILED_TO_READ_ELEMENT_NAME
@ TIXML_ERROR_FAILED_TO_READ_ELEMENT_NAME
Definition: tinyxml.h:310
encoding
dictionary encoding
TiXmlAttributeSet::Last
const TiXmlAttribute * Last() const
Definition: tinyxml.h:1044
TiXmlBase::operator=
void operator=(const TiXmlBase &base)
TiXmlNode::prev
TiXmlNode * prev
Definition: tinyxml.h:868
TiXmlComment
Definition: tinyxml.h:1313
TiXmlNode::Clear
void Clear()
Delete all the children of this node. Does not affect 'this'.
Definition: tinyxml.cpp:169
TiXmlNode::operator=
void operator=(const TiXmlNode &base)
imu_timestamp_test.filename
string filename
Definition: imu_timestamp_test.py:69
TiXmlNode::LastChild
TiXmlNode * LastChild()
The last child of this node. Will be null if there are no children.
Definition: tinyxml.h:596
TiXmlBase::TIXML_ERROR_PARSING_COMMENT
@ TIXML_ERROR_PARSING_COMMENT
Definition: tinyxml.h:316
TiXmlAttribute::TiXmlAttribute
TiXmlAttribute(const char *_name, const char *_value)
Construct an attribute with a name and value.
Definition: tinyxml.h:908
TiXmlAttribute::next
TiXmlAttribute * next
Definition: tinyxml.h:1011
TiXmlNode::NodeType
NodeType
Definition: tinyxml.h:513
TiXmlBase::Row
int Row() const
Definition: tinyxml.h:278
tinystr.h
TiXmlText::operator=
TiXmlText & operator=(const TiXmlText &base)
Definition: tinyxml.h:1402
TiXmlAttribute::operator<
bool operator<(const TiXmlAttribute &rhs) const
Definition: tinyxml.h:979
TiXmlBase::StringEqual
static bool StringEqual(const char *p, const char *endTag, bool ignoreCase, TiXmlEncoding encoding)
Definition: tinyxmlparser.cpp:534
TiXmlAttribute::NameTStr
const TIXML_STRING & NameTStr() const
Definition: tinyxml.h:928
TiXmlPrinter::TiXmlPrinter
TiXmlPrinter()
Definition: tinyxml.h:1995
TiXmlPrinter::CStr
const char * CStr()
Return the result.
Definition: tinyxml.h:2046
TIXML_ENCODING_LEGACY
@ TIXML_ENCODING_LEGACY
Definition: tinyxml.h:194
TiXmlAttributeSet::Last
TiXmlAttribute * Last()
Definition: tinyxml.h:1047
TiXmlNode::Clone
virtual TiXmlNode * Clone() const =0
operator>>
std::istream & operator>>(std::istream &str, CSVRow &data)
Definition: softwarePLL.cpp:63
api.setup.name
name
Definition: python/api/setup.py:12
TiXmlNode::firstChild
TiXmlNode * firstChild
Definition: tinyxml.h:863
setup.version
version
Definition: tools/imu_delay_tester/setup.py:8
TiXmlAttribute
Definition: tinyxml.h:884
TiXmlNode::NextSiblingElement
const TiXmlElement * NextSiblingElement() const
Definition: tinyxml.cpp:482
polar_to_cartesian_pointcloud_ros1.node
node
Definition: polar_to_cartesian_pointcloud_ros1.py:81
TiXmlDeclaration::Standalone
const char * Standalone() const
Is this a standalone document?
Definition: tinyxml.h:1495
TiXmlAttribute::document
TiXmlDocument * document
Definition: tinyxml.h:1007
TiXmlAttribute::SetDocument
void SetDocument(TiXmlDocument *doc)
Definition: tinyxml.h:1000
TiXmlBase::TIXML_ERROR
@ TIXML_ERROR
Definition: tinyxml.h:307
TiXmlPrinter::DoLineBreak
void DoLineBreak()
Definition: tinyxml.h:2065
TiXmlUnknown
Definition: tinyxml.h:1542
TiXmlAttribute::operator==
bool operator==(const TiXmlAttribute &rhs) const
Definition: tinyxml.h:976
TiXmlBase::TIXML_ERROR_EMBEDDED_NULL
@ TIXML_ERROR_EMBEDDED_NULL
Definition: tinyxml.h:319
TiXmlBase::IsWhiteSpaceCondensed
static bool IsWhiteSpaceCondensed()
Return the current white space setting.
Definition: tinyxml.h:257
TiXmlPrinter::LineBreak
const char * LineBreak()
Query the current line breaking string.
Definition: tinyxml.h:2033
TiXmlNode::TINYXML_DECLARATION
@ TINYXML_DECLARATION
Definition: tinyxml.h:520
TiXmlBase::TIXML_ERROR_PARSING_UNKNOWN
@ TIXML_ERROR_PARSING_UNKNOWN
Definition: tinyxml.h:315
TiXmlElement::CopyTo
void CopyTo(TiXmlElement *target) const
Definition: tinyxml.cpp:853
TiXmlPrinter::indent
TIXML_STRING indent
Definition: tinyxml.h:2073
TiXmlNode::TiXmlDocument
friend class TiXmlDocument
Definition: tinyxml.h:475
TiXmlElement::Clone
virtual TiXmlNode * Clone() const
Creates a new Element and returns it - the returned element is a copy.
Definition: tinyxml.cpp:889
TiXmlDeclaration
Definition: tinyxml.h:1460
d
d
TiXmlVisitor::VisitEnter
virtual bool VisitEnter(const TiXmlDocument &)
Visit a document.
Definition: tinyxml.h:148
TiXmlBase::TIXML_ERROR_PARSING_DECLARATION
@ TIXML_ERROR_PARSING_DECLARATION
Definition: tinyxml.h:317
TiXmlHandle::node
TiXmlNode * node
Definition: tinyxml.h:1969
TiXmlNode::NextSiblingElement
TiXmlElement * NextSiblingElement(const char *_next)
Definition: tinyxml.h:738
TiXmlAttribute::Previous
TiXmlAttribute * Previous()
Definition: tinyxml.h:971
TiXmlNode::NextSiblingElement
TiXmlElement * NextSiblingElement()
Definition: tinyxml.h:727
TiXmlParsingData
Definition: tinyxmlparser.cpp:171
TiXmlNode::PreviousSibling
TiXmlNode * PreviousSibling(const char *_prev)
Definition: tinyxml.h:694
TiXmlNode
Definition: tinyxml.h:473
TiXmlNode::InsertBeforeChild
TiXmlNode * InsertBeforeChild(TiXmlNode *beforeThis, const TiXmlNode &addThis)
Definition: tinyxml.cpp:230
TIXML_DEFAULT_ENCODING
const TiXmlEncoding TIXML_DEFAULT_ENCODING
Definition: tinyxml.h:197
TiXmlNode::Parent
const TiXmlNode * Parent() const
Definition: tinyxml.h:576
TiXmlPrinter::lineBreak
TIXML_STRING lineBreak
Definition: tinyxml.h:2074
TINYXML_EXPORT_ATTR
#define TINYXML_EXPORT_ATTR
Definition: tinystr.h:42
TiXmlBase::location
TiXmlCursor location
Definition: tinyxml.h:419
TiXmlDeclaration::Print
virtual void Print(FILE *cfile, int depth) const
Definition: tinyxml.h:1504
TiXmlVisitor::Visit
virtual bool Visit(const TiXmlUnknown &)
Visit an unknown node.
Definition: tinyxml.h:176
TiXmlNode::InsertEndChild
TiXmlNode * InsertEndChild(const TiXmlNode &addThis)
Definition: tinyxml.cpp:214
TiXmlText::CDATA
bool CDATA() const
Queries whether this represents text using a CDATA section.
Definition: tinyxml.h:1412
TiXmlBase::SetCondenseWhiteSpace
static void SetCondenseWhiteSpace(bool condense)
Definition: tinyxml.h:253
TiXmlUnknown::~TiXmlUnknown
virtual ~TiXmlUnknown()
Definition: tinyxml.h:1548
TiXmlComment::TiXmlComment
TiXmlComment()
Constructs an empty comment.
Definition: tinyxml.h:1317
TIXML_MAJOR_VERSION
const int TIXML_MAJOR_VERSION
Definition: tinyxml.h:102
TiXmlBase::Print
virtual void Print(FILE *cfile, int depth) const =0
TiXmlDocument::ErrorDesc
const char * ErrorDesc() const
Contains a textual (english) description of the error if one occurs.
Definition: tinyxml.h:1675
TiXmlVisitor::VisitExit
virtual bool VisitExit(const TiXmlDocument &)
Visit a document.
Definition: tinyxml.h:152
TiXmlBase::TIXML_NO_ERROR
@ TIXML_NO_ERROR
Definition: tinyxml.h:306
TiXmlNode::IterateChildren
TiXmlNode * IterateChildren(const TiXmlNode *previous)
Definition: tinyxml.h:631
TiXmlBase::TIXML_ERROR_PARSING_ELEMENT
@ TIXML_ERROR_PARSING_ELEMENT
Definition: tinyxml.h:309
TiXmlDocument::error
bool error
Definition: tinyxml.h:1775
TiXmlNode::GetDocument
TiXmlDocument * GetDocument()
Definition: tinyxml.h:781
TiXmlBase::SkipWhiteSpace
static const char * SkipWhiteSpace(const char *, TiXmlEncoding encoding)
Definition: tinyxmlparser.cpp:314
TiXmlDocument::RootElement
const TiXmlElement * RootElement() const
Definition: tinyxml.h:1660
TiXmlDocument::RootElement
TiXmlElement * RootElement()
Definition: tinyxml.h:1663
TiXmlBase::condenseWhiteSpace
static bool condenseWhiteSpace
Definition: tinyxml.h:463
TiXmlCursor::col
int col
Definition: tinyxml.h:118
TiXmlPrinter::DoIndent
void DoIndent()
Definition: tinyxml.h:2059
TiXmlPrinter::buffer
TIXML_STRING buffer
Definition: tinyxml.h:2072
TiXmlNode::FirstChildElement
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cpp:452
TiXmlEncoding
TiXmlEncoding
Definition: tinyxml.h:190
TiXmlNode::TINYXML_TYPECOUNT
@ TINYXML_TYPECOUNT
Definition: tinyxml.h:521
TiXmlAttributeSet::First
const TiXmlAttribute * First() const
Definition: tinyxml.h:1038
TiXmlBase::ReadName
static const char * ReadName(const char *p, TIXML_STRING *name, TiXmlEncoding encoding)
Definition: tinyxmlparser.cpp:401
TiXmlHandle::ToUnknown
TiXmlUnknown * ToUnknown() const
Definition: tinyxml.h:1941
TiXmlBase::TIXML_ERROR_DOCUMENT_EMPTY
@ TIXML_ERROR_DOCUMENT_EMPTY
Definition: tinyxml.h:318
TiXmlBase::Entity::chr
char chr
Definition: tinyxml.h:454
TiXmlCursor
Definition: tinyxml.h:109
TiXmlHandle::Node
TiXmlNode * Node() const
Definition: tinyxml.h:1947
TiXmlBase
Definition: tinyxml.h:221
TiXmlAttribute::Next
TiXmlAttribute * Next()
Definition: tinyxml.h:963
TiXmlNode::Value
const char * Value() const
Definition: tinyxml.h:538
sick_scan_xd_api_test.c
c
Definition: sick_scan_xd_api_test.py:445
TiXmlHandle::ToElement
TiXmlElement * ToElement() const
Definition: tinyxml.h:1931
TiXmlDeclaration::standalone
TIXML_STRING standalone
Definition: tinyxml.h:1531
TiXmlPrinter::depth
int depth
Definition: tinyxml.h:2070
TiXmlAttributeSet
Definition: tinyxml.h:1027
TiXmlNode::TINYXML_TEXT
@ TINYXML_TEXT
Definition: tinyxml.h:519
TiXmlHandle::Unknown
TiXmlUnknown * Unknown() const
Definition: tinyxml.h:1965
length
TFSIMD_FORCE_INLINE tfScalar length(const Quaternion &q)
TiXmlPrinter::SetStreamPrinting
void SetStreamPrinting()
Definition: tinyxml.h:2039
TiXmlAttribute::TiXmlAttribute
TiXmlAttribute()
Construct an empty attribute.
Definition: tinyxml.h:890
TiXmlText::cdata
bool cdata
Definition: tinyxml.h:1443
TiXmlComment::~TiXmlComment
virtual ~TiXmlComment()
Definition: tinyxml.h:1330
TiXmlNode::FirstChildElement
TiXmlElement * FirstChildElement()
Definition: tinyxml.h:751
TiXmlDocument::Parse
virtual const char * Parse(const char *p, TiXmlParsingData *data=0, TiXmlEncoding encoding=TIXML_DEFAULT_ENCODING)
Definition: tinyxmlparser.cpp:704
TiXmlVisitor::VisitEnter
virtual bool VisitEnter(const TiXmlElement &, const TiXmlAttribute *)
Visit an element.
Definition: tinyxml.h:156
TiXmlNode::RemoveChild
bool RemoveChild(TiXmlNode *removeThis)
Delete a child of this node.
Definition: tinyxml.cpp:335
sick_scan_base.h
TiXmlBase::ReadText
static const char * ReadText(const char *in, TIXML_STRING *text, bool ignoreWhiteSpace, const char *endTag, bool ignoreCase, TiXmlEncoding encoding)
Definition: tinyxmlparser.cpp:574
TiXmlBase::IsAlphaNum
static int IsAlphaNum(unsigned char anyByte, TiXmlEncoding encoding)
Definition: tinyxmlparser.cpp:150
TiXmlCursor::row
int row
Definition: tinyxml.h:117
TiXmlElement::FirstAttribute
TiXmlAttribute * FirstAttribute()
Definition: tinyxml.h:1227
TiXmlDocument::tabsize
int tabsize
Definition: tinyxml.h:1778
TiXmlNode::SetValue
void SetValue(const char *_value)
Definition: tinyxml.h:561
attribute
def attribute(tag, a)
TiXmlBase::TIXML_ERROR_STRING_COUNT
@ TIXML_ERROR_STRING_COUNT
Definition: tinyxml.h:323
TiXmlBase::TIXML_ERROR_OPENING_FILE
@ TIXML_ERROR_OPENING_FILE
Definition: tinyxml.h:308
TiXmlNode::PreviousSibling
TiXmlNode * PreviousSibling()
Definition: tinyxml.h:688
TiXmlNode::next
TiXmlNode * next
Definition: tinyxml.h:869
TiXmlBase::userData
void * userData
Field containing a generic user pointer.
Definition: tinyxml.h:422
TiXmlBase::utf8ByteTable
static const int utf8ByteTable[256]
Definition: tinyxml.h:293
TiXmlPrinter::SetLineBreak
void SetLineBreak(const char *_lineBreak)
Definition: tinyxml.h:2029
TiXmlBase::errorString
static const char * errorString[TIXML_ERROR_STRING_COUNT]
Definition: tinyxml.h:417
TiXmlBase::IsAlpha
static int IsAlpha(unsigned char anyByte, TiXmlEncoding encoding)
Definition: tinyxmlparser.cpp:129
TiXmlHandle::operator=
TiXmlHandle operator=(const TiXmlHandle &ref)
Definition: tinyxml.h:1875
TiXmlDocument::errorLocation
TiXmlCursor errorLocation
Definition: tinyxml.h:1779
TiXmlUnknown::TiXmlUnknown
TiXmlUnknown(const TiXmlUnknown &copy)
Definition: tinyxml.h:1551
TiXmlNode::Accept
virtual bool Accept(TiXmlVisitor *visitor) const =0
TiXmlNode::TINYXML_UNKNOWN
@ TINYXML_UNKNOWN
Definition: tinyxml.h:518
TiXmlNode::Identify
TiXmlNode * Identify(const char *start, TiXmlEncoding encoding)
Definition: tinyxmlparser.cpp:818
TiXmlDocument::useMicrosoftBOM
bool useMicrosoftBOM
Definition: tinyxml.h:1780
TiXmlDocument::operator=
TiXmlDocument & operator=(const TiXmlDocument &copy)
Definition: tinyxml.cpp:946
TiXmlHandle::ToText
TiXmlText * ToText() const
Definition: tinyxml.h:1936
TiXmlNode::InsertAfterChild
TiXmlNode * InsertAfterChild(TiXmlNode *afterThis, const TiXmlNode &addThis)
Definition: tinyxml.cpp:263
TiXmlDocument::ErrorId
int ErrorId() const
Definition: tinyxml.h:1681
TIXML_SUCCESS
@ TIXML_SUCCESS
Definition: tinyxml.h:183
TiXmlPrinter
Definition: tinyxml.h:1992
TiXmlText
Definition: tinyxml.h:1372
TiXmlBase::TIXML_ERROR_DOCUMENT_TOP_ONLY
@ TIXML_ERROR_DOCUMENT_TOP_ONLY
Definition: tinyxml.h:321
TiXmlBase::IsWhiteSpace
static bool IsWhiteSpace(int c)
Definition: tinyxml.h:335
TiXmlBase::ToLower
static int ToLower(int v, TiXmlEncoding encoding)
Definition: tinyxml.h:430
roswrap::start
ROSCPP_DECL void start()
Actually starts the internals of the node (spins up threads, starts the network polling and xmlrpc lo...
TIXML_MINOR_VERSION
const int TIXML_MINOR_VERSION
Definition: tinyxml.h:103
TiXmlAttribute::value
TIXML_STRING value
Definition: tinyxml.h:1009
TIXML_STRING
#define TIXML_STRING
Definition: tinyxml.h:56
TiXmlNode::LastChild
TiXmlNode * LastChild(const char *_value)
The last child of this node matching 'value'. Will be null if there are no children.
Definition: tinyxml.h:601
TiXmlAttributeSet::sentinel
TiXmlAttribute sentinel
Definition: tinyxml.h:1066
TiXmlBase::GetChar
static const char * GetChar(const char *p, char *_value, int *length, TiXmlEncoding encoding)
Definition: tinyxml.h:370
TiXmlVisitor::Visit
virtual bool Visit(const TiXmlComment &)
Visit a comment node.
Definition: tinyxml.h:172
TiXmlText::~TiXmlText
virtual ~TiXmlText()
Definition: tinyxml.h:1387
TiXmlText::TiXmlText
TiXmlText(const TiXmlText &copy)
Definition: tinyxml.h:1399
TiXmlAttribute::operator>
bool operator>(const TiXmlAttribute &rhs) const
Definition: tinyxml.h:982
TiXmlNode::IterateChildren
const TiXmlNode * IterateChildren(const TiXmlNode *previous) const
Definition: tinyxml.cpp:385
TiXmlNode::TINYXML_COMMENT
@ TINYXML_COMMENT
Definition: tinyxml.h:517
TiXmlBase::~TiXmlBase
virtual ~TiXmlBase()
Definition: tinyxml.h:233
TiXmlHandle::TiXmlHandle
TiXmlHandle(TiXmlNode *_node)
Create a handle from any node (at any depth of the tree.) This can be a null pointer.
Definition: tinyxml.h:1868
TiXmlNode::NextSibling
TiXmlNode * NextSibling()
Definition: tinyxml.h:710
TiXmlNode::lastChild
TiXmlNode * lastChild
Definition: tinyxml.h:864
TiXmlNode::Parent
TiXmlNode * Parent()
One step up the DOM.
Definition: tinyxml.h:573
TiXmlDocument::SetTabSize
void SetTabSize(int _tabsize)
Definition: tinyxml.h:1721
TiXmlNode::parent
TiXmlNode * parent
Definition: tinyxml.h:860
error
def error(*args, **kwargs)
TiXmlNode::TINYXML_DOCUMENT
@ TINYXML_DOCUMENT
Definition: tinyxml.h:515


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:12