~ubuntu-branches/ubuntu/precise/libxml++2.6/precise

« back to all changes in this revision

Viewing changes to libxml++/parsers/domparser.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-03-13 15:46:33 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050313154633-iubyqdtu6y3p8915
Tags: 2.10.0-0ubuntu2
added doxygen to the build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
class DomParser : public Parser
20
20
{
21
21
public:
22
 
 
23
 
 
24
22
  DomParser();
25
23
 
26
24
  /** Instantiate the parser and parse a document immediately.
42
40
   * @param contents The XML document as a string.
43
41
   */ 
44
42
  virtual void parse_memory(const Glib::ustring& contents);
 
43
  
 
44
  /** Parse an XML document from raw memory.
 
45
   * @throw exception
 
46
   * @param contents The XML document as an array of bytes.
 
47
   * @param bytes_count The number of bytes in the @a contents array.
 
48
   */ 
 
49
  void parse_memory_raw(const unsigned char* contents, size_type bytes_count);
45
50
 
46
51
  /** Parse an XML document from a stream.
47
52
   * @throw exception