ALPS Home Libraries License Support People ALPS Web Site

PrevUpHomeNext

Class XMLParser

alps::XMLParser

Synopsis

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


class XMLParser {
public:
  // construct/copy/destruct
  XMLParser(XMLHandlerBase &);
  XMLParser();
  ~XMLParser();

  // public member functions
  void parse(std::istream &);
  void parse(const std::string &);
  void parse(const boost::filesystem::path &);
};

Description

XMLParser public construct/copy/destruct

  1. XMLParser(XMLHandlerBase &);
  2. XMLParser();
  3. ~XMLParser();

XMLParser public member functions

  1. void parse(std::istream & is);
  2. void parse(const std::string & file);
  3. void parse(const boost::filesystem::path & file);
Copyright © 1994, 2002-2005 Matthias Troyer, Synge Todo

PrevUpHomeNext