ALPS Home Libraries License Support People ALPS Web Site

PrevUpHomeNext

Class PrintXMLHandler

alps::PrintXMLHandler

Synopsis

// In header: <alps/parser/xmlhandler.h>


class PrintXMLHandler : public alps::XMLHandlerBase {
public:
  // construct/copy/destruct
  PrintXMLHandler(std::ostream & = std::cout);

  // public member functions
  void start_element(const std::string &, const XMLAttributes &, 
                     xml::tag_type);
  void end_element(const std::string &, xml::tag_type);
  void text(const std::string &);
};

Description

PrintXMLHandler public construct/copy/destruct

  1. PrintXMLHandler(std::ostream & os = std::cout);

PrintXMLHandler public member functions

  1. void start_element(const std::string & name, const XMLAttributes & attributes, 
                       xml::tag_type type);
  2. void end_element(const std::string & name, xml::tag_type type);
  3. void text(const std::string & text);
Copyright © 1994, 2002-2005 Matthias Troyer, Synge Todo

PrevUpHomeNext