nodeType.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include <ostream>
9 
13 namespace exml {
17  enum class nodeType {
18  unknow,
19  node,
20  document,
21  declaration,
22  attribute,
23  element,
24  comment,
25  text,
26  };
28  std::ostream& operator <<(std::ostream& _os, enum nodeType _obj);
29 }
30 
the <XXX> ... </XXX>
<XXX> InsideText </XXX>
all the file main access
exml namespace containing all function for XML interpretor
Definition: Attribute.hpp:11
comment node : <!– –>
might be an error ...
might be an error ...
the <Element ATTRIBUTE="ATTRIBUTE_VALUE" />
nodeType
Type of the XML elements.
Definition: nodeType.hpp:17