libzypp  13.10.6
libxmlfwd.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_PARSER_XML_LIBXMLFWD_H
13 #define ZYPP_PARSER_XML_LIBXMLFWD_H
14 
15 extern "C"
16 {
17 #include <libxml/xmlreader.h>
18 #include <libxml/xmlerror.h>
19 }
20 
21 #include <iosfwd>
22 
24 namespace zypp
25 {
26  namespace xml
28  {
29 
30  typedef xmlTextReaderMode ReadState;
32  std::ostream & operator<<( std::ostream & str, const ReadState & obj );
33 
34  typedef xmlReaderTypes NodeType;
36  std::ostream & operator<<( std::ostream & str, const NodeType & obj );
37 
39  } // namespace xml
42 } // namespace zypp
44 #endif // ZYPP_PARSER_XML_LIBXMLFWD_H
std::ostream & operator<<(std::ostream &str, const ReadState &obj)
Definition: libxmlfwd.cc:29
xmlReaderTypes NodeType
Definition: libxmlfwd.h:34
xmlTextReaderMode ReadState
Definition: libxmlfwd.h:30