import torrus 1.0.9
[freeside.git] / FS / FS / Report.pm
1 package FS::Report;
2
3 use strict;
4
5 =head1 NAME
6
7 FS::Report - Report data objects
8
9 =head1 SYNOPSIS
10
11   #see the more speicific report objects, currently only FS::Report::Table
12
13 =head1 DESCRIPTION
14
15 See the more specific report objects, currently only FS::Report::Table
16
17 =head1 METHODS
18
19 =over 4
20
21 =item new [ OPTION => VALUE ... ]
22
23 Constructor.  Takes a list of options and their values.
24
25 =cut
26
27 sub new {
28   my $proto = shift;
29   my $class = ref($proto) || $proto;
30   my $self = @_ ? ( ref($_[0]) ? shift : { @_ } ) : {};
31   bless( $self, $class );
32 }
33
34 =back
35
36 =head1 BUGS
37
38 Documentation.
39
40 =head1 SEE ALSO
41
42 L<FS::Report::Table>, reports in the web interface.
43
44 =cut
45
46 1;