diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-14 11:09:54 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:50 -0400 |
commit | f83705b847c59a8197f5098cb7dc2d484704e24d (patch) | |
tree | 1b314d07bb9f50a75781d703ec6c778056e74684 /src/textual.h | |
parent | 65af1688382331d91153fb2366026e94feb5afe2 (diff) | |
download | ledger-f83705b847c59a8197f5098cb7dc2d484704e24d.tar.gz ledger-f83705b847c59a8197f5098cb7dc2d484704e24d.tar.bz2 ledger-f83705b847c59a8197f5098cb7dc2d484704e24d.zip |
Changed xpath to use intrusive_ptr; got the xml command working
Diffstat (limited to 'src/textual.h')
-rw-r--r-- | src/textual.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/textual.h b/src/textual.h index c6654979..f4d81f19 100644 --- a/src/textual.h +++ b/src/textual.h @@ -41,9 +41,9 @@ class textual_parser_t : public parser_t public: virtual bool test(std::istream& in) const; - virtual void parse(std::istream& in, - const path& pathname, - xml::builder_t& builder); + virtual std::size_t parse(std::istream& in, + const path& pathname, + xml::builder_t& builder); }; } // namespace ledger |