base: print support for Xml_node

Ref #1987
This commit is contained in:
Emery Hemingway 2016-09-13 11:26:18 +02:00 committed by Christian Helmuth
parent e370e08e01
commit 80558374f5
1 changed files with 3 additions and 0 deletions

View File

@ -906,6 +906,9 @@ class Genode::Xml_node
try { sub_node(type); return true; } catch (...) { }
return false;
}
void print(Output &output) const {
output.out_string(addr(), size()); }
};
#endif /* _INCLUDE__UTIL__XML_NODE_H_ */