more docu

This commit is contained in:
Marc Wäckerlin
2009-04-21 07:12:24 +00:00
parent 4e59d4cd01
commit 650e88e2c3
2 changed files with 50 additions and 9 deletions

View File

@@ -393,16 +393,11 @@ namespace xml {
bool operator()(const std::string& child) const throw();
Node& operator<<(const Node& o) throw(cannot_have_children);
Node& operator<<(const Attributes& o) throw();
//! Get the number of children.
size_type children() const throw();
//! Get the n-th child.
const Node& operator[](size_type child) const throw(out_of_range);
//! Get the n-th child.
Node& operator[](size_type child) throw(out_of_range);
//! Get the first named child.
const Node& operator[](const std::string& child) const
throw(access_error);
//! Get the first named child.
Node& operator[](const std::string& child) throw(access_error);
std::string operator*() const throw();
Node& operator=(const std::string& contents) throw(tag_expected,