|
NAMEGraph::Reader::Dot - class for reading a Graph instance from Dot formatSYNOPSISuse Graph::Reader::Dot; use Graph; $reader = Graph::Reader::Dot->new(); $graph = $reader->read_graph('mygraph.dot'); DESCRIPTIONGraph::Reader::Dot is a class for reading in a directed graph in the file format used by the dot tool (part of the AT+T graphviz package).Graph::Reader::Dot is a subclass of Graph::Reader, which defines the generic interface for Graph reader classes. METHODS AND CONFIGURATION"new()"Constructor - generate a new reader instance.$reader = Graph::Reader::Dot->new(); This doesn't take any arguments. "read_graph()"Read a graph from a file:$graph = $reader->read_graph( $file ); The $file argument can be either a filename or a filehandle of a previously opened file. $Graph::Reader::Dot::UseNodeAttrControls, if implicit node attributes given by the dot directive "node[]" will be merged into (new) nodes. Setting it to 0 or "undef" (default) will not disable this feature. Setting it to any other value will enable this feature.$Graph::Reader::Dot::UseEdgeAttrControls, if implicit edge attributes given by the dot directive "edge[]" will be merged into edges. Setting it to 0 or "undef" (default) will not disable this feature. Setting it to any other value will enable this feature.RESTRICTIONS
SEE ALSO
AUTHORMark A. Hillebrand <mah@wjpserver.cs.uni-sb.de>COPYRIGHTCopyright (c) 2001 by Mark A. Hillebrand. All rights reserved.This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |