| DBIx-Class-Graph documentation | Contained in the DBIx-Class-Graph distribution. |
DBIx::Class::ResultSet::Graph
version 1.03
DBIx::Class::ResultSet::Graph
Copyright (C) 2008 by Moritz Onken
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
Moritz Onken <onken@netcubed.de>
This software is Copyright (c) 2010 by Moritz Onken.
This is free software, licensed under:
The (three-clause) BSD License
| DBIx-Class-Graph documentation | Contained in the DBIx-Class-Graph distribution. |
# # This file is part of DBIx-Class-Graph # # This software is Copyright (c) 2010 by Moritz Onken. # # This is free software, licensed under: # # The (three-clause) BSD License # package DBIx::Class::ResultSet::Graph; BEGIN { $DBIx::Class::ResultSet::Graph::VERSION = '1.03'; } use Moose; use DBIx::Class::Graph::Wrapper; extends 'DBIx::Class::ResultSet'; with 'DBIx::Class::Graph::Role::ResultSet'; sub get_graph { return shift->_graph } # backwards compat *graph = \&get_graph; 1;
__END__ # Below is stub documentation for your module. You'd better edit it!