more docu; other behaviour for parent

This commit is contained in:
Marc Wäckerlin
2009-04-20 06:42:09 +00:00
parent 2261c5b77d
commit 4e59d4cd01
3 changed files with 101 additions and 9 deletions

View File

@@ -424,9 +424,10 @@ namespace xml {
//----------------------------------------------------------------------------
class String: public Node {
public:
String(std::string name, size_type min=0, size_type max=0) throw();
String(std::string name,
Node::size_type min=0, Node::size_type max=0) throw();
String(std::string name, const std::string& text,
size_type min=0, size_type max=0) throw();
Node::size_type min=0, Node::size_type max=0) throw();
virtual std::auto_ptr<Node> clone() const throw();
virtual ~String() throw() {}
virtual std::string text() const throw();