| Boost-Graph documentation | Contained in the Boost-Graph distribution. |
Boost::Graph::Undirected - Undirected Graph algorithms for Boost::Graph
see Boost::Graph documentation
Perl wrapper for XS code
None by default.
David Burdick, <dburdick@systemsbiology.org>
Copyright 2005 by David Burdick
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Boost-Graph documentation | Contained in the Boost-Graph distribution. |
package Boost::Graph::Undirected; use 5.008; use strict; use warnings; require Exporter; our @ISA = qw(Exporter); our %EXPORT_TAGS = ( 'all' => [ qw( ) ] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw( ); our $VERSION = '1.1'; require XSLoader; XSLoader::load('Boost::Graph::Undirected', $VERSION); # Preloaded methods go here. 1; __END__