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

« back to all changes in this revision

Viewing changes to examples/sax_parser/myparser.h

  • Committer: Bazaar Package Importer
  • Author(s): Deng Xiyue, Josselin Mouette, Deng Xiyue
  • Date: 2009-10-25 14:56:53 UTC
  • mfrom: (1.1.15 upstream) (2.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091025145653-1fk5uofteweb3okt
Tags: 2.26.1-1
[ Josselin Mouette ]
* Include clean-la.mk rule.

[ Deng Xiyue ]
* New upstream release.
* Update Standard-Version to 3.8.3.  No changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
protected:
34
34
  //overrides:
 
35
#ifdef LIBXMLCPP_EXCEPTIONS_ENABLED
35
36
  virtual void on_start_document();
36
37
  virtual void on_end_document();
37
38
  virtual void on_start_element(const Glib::ustring& name,
42
43
  virtual void on_warning(const Glib::ustring& text);
43
44
  virtual void on_error(const Glib::ustring& text);
44
45
  virtual void on_fatal_error(const Glib::ustring& text);
 
46
#endif
45
47
};
46
48
 
47
49