libzeep

PrevUpHomeNext

Class text

zeep::xml::text — A node containing text.

Synopsis

// In header: <zeep/xml/node.hpp>


class text : public  {
public:
  // construct/copy/destruct
  ();
  (text &&) ;
  ();

  // public member functions
   ();
   (node *) ;
   () ;
  node * () ;
  node * ();

  // protected member functions
   (, format_info) ;
};

Description

text public construct/copy/destruct

  1. ();
  2. (text && t) ;
  3. ( text);

text public member functions

  1.  ( text);
    append text to the stored text
  2.  (node * n) ;
    compare nodes for equality
  3.  () ;
    returns true if this text contains only whitespace characters
  4. node * () ;
    return an exact copy of this node, including all data in sub nodes
  5. node * ();

    return a copy of this node, including all data in sub nodes, but in contrast with clone the data is moved from this node to the cloned node. This node will be empty afterwards.

text protected member functions

  1.  ( os, format_info fmt) ;
    low level routine for writing out XML

    This method is usually called by operator<<(std::ostream&, zeep::xml::document&)


PrevUpHomeNext