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