
Apache::CVS::Graph - class that implements a graph that details the revision history of an Apache::CVS::File

use Apache::CVS::File(); use Apache::CVS::Graph(); use Graph::Directed(); $file = Apache::CVS::File->new($path, $rcs_config); $cvs_graph = Apache::CVS::Graph->new($file); $graph = $cvs_graph->graph(); @vertices = $graph->vertices();

The Apache::CVS::Graph class implements a directed acyclick graph that details the revision history of an Apache::CVS::File.
Construct a new Apache::CVS::Graph object. Takes an Apache::CVS::File as an argument.
Set or get the Apache::CVS::File associated with this graph.
Returns a Graph::Directed object.
Get the root node for this graph. There are instances where $G->source_vertices() does not return something useful.
Get or set the labels for this graph.

Apache::CVS, Apache::CVS::File, Graph::Directed, Graph::Base, Rcs

John Barbee <barbee@veribox.net>

Copyright 2001-2002 John Barbee
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.