Added components to the main Tree pod.
[dbsrgits/DBIx-Class-Tree.git] / lib / DBIx / Class / Tree.pm
CommitLineData
6e2766f2 1# vim: ts=8:sw=4:sts=4:et
2package DBIx::Class::Tree;
3
4use strict;
5use warnings;
6
b3bcf44e 7use vars qw( $VERSION );
6e2766f2 8use base qw( DBIx::Class );
9
10$VERSION = '0.01000';
11
121;
82958127 13__END__
14
15=head1 NAME
16
17DBIx::Class::Tree - Manipulate and anaylze tree structured data. (EXPERIMENTAL)
18
82958127 19=head1 DESCRIPTION
20
9d3d72a3 21The tree modules provide the tools to represent, modify, and analyze
22trees of data with DBIx::Class.
23
24=head1 COMPONENTS
25
26L<DBIx::Class::Tree::AdjacencyList> - Manage a tree of data using the common adjacency list model. (EXPERIMENTAL)
27
28L<DBIx::Class::Tree::AdjacencyList::Ordered> - Glue DBIx::Class::Ordered and DBIx::Class::Tree::AdjacencyList together. (EXPERIMENTAL)
29
82958127 30=head1 AUTHOR
31
32Aran Clary Deltac <bluefeet@cpan.org>
33
34=head1 LICENSE
35
36You may distribute this code under the same terms as Perl itself.
37