
Parse::CVSEntries - parse a CVS/Entries file

my $parsed = Parse::CVSEntries->new( 'CVS/Entries' );
for my $entry ($parsed->entries) {
print $entry->name, " ", $entry->version, "\n";
}


Opens a file and parses it invoking entry_class->new to actually prepare the data.
Returns a list of all the entries in the parsed file.
What class to instantiate for each entry. Defaults to Parse::CVSEntry

A representation of an entry in the entries file.

All of these are just simple data accessors.
modified as epoch seconds

Richard Clamp <richardc@unixbeard.net>

Copyright (C) 2003 Richard Clamp. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

File::Find::Rule::CVS, cvs(1)