blob: b8ab2926c655e58f1e6e8cbf275884a8d06e05ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef PRINT_H
#define PRINT_H
#include <ostream>
#include <dom/DOM.hpp>
::std::ostream& operator<<(::std::ostream&, DOM_Node&);
::std::ostream& operator<< (::std::ostream&, const DOMString&);
void printinit();
#endif
|