
SVN::Dump::Reader - A Subversion dump reader

# !!! You should use SVN::Dump, not SVN::Dump::Reader !!!
use SVN::Dump::Reader;
my $reader = SVN::Dump::Reader( $fh );
my $record = $reader->read_record();

The SVN::Dump::Reader class implements a reader object for Subversion dumps.

The following methods are available:
Create a new SVN::Dump::Reader attached to the $fh filehandle.
Read and return a new SVN::Dump::Record object from the dump filehandle.
Read and return a new SVN::Dump::Headers object from the dump filehandle.
Read and return a new SVN::Dump::Property object from the dump filehandle.
Read and return a new SVN::Dump::Text object from the dump filehandle.
The read_... methods will die horribly if asked to read inconsistent data from a stream.

SVN::Dump, SVN::Dump::Headers, SVN::Dump::Property, SVN::Dump::Text.

Copyright 2006 Philippe 'BooK' Bruhat, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.