~ubuntu-branches/ubuntu/gutsy/horae/gutsy

« back to all changes in this revision

Viewing changes to 0CPAN/Spreadsheet-WriteExcel-2.15/lib/Spreadsheet/WriteExcel/Big.pm

  • Committer: Bazaar Package Importer
  • Author(s): Carlo Segre
  • Date: 2006-12-28 12:36:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061228123648-9xnjr76wfthd92cq
Tags: 064-1
New upstream release, dropped dependency on libtk-filedialog-perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package Spreadsheet::WriteExcel::Big;
2
 
 
3
 
###############################################################################
4
 
#
5
 
# WriteExcel::Big
6
 
#
7
 
# Spreadsheet::WriteExcel - Write formatted text and numbers to a
8
 
# cross-platform Excel binary file.
9
 
#
10
 
# Copyright 2000-2005, John McNamara.
11
 
#
12
 
#
13
 
 
14
 
require Exporter;
15
 
 
16
 
use strict;
17
 
use Spreadsheet::WriteExcel::WorkbookBig;
18
 
 
19
 
 
20
 
 
21
 
 
22
 
use vars qw($VERSION @ISA);
23
 
@ISA = qw(Spreadsheet::WriteExcel::WorkbookBig Exporter);
24
 
 
25
 
$VERSION = '2.01'; # May 2000
26
 
 
27
 
###############################################################################
28
 
#
29
 
# new()
30
 
#
31
 
# Constructor. Wrapper for a Workbook object.
32
 
# uses: Spreadsheet::WriteExcel::BIFFwriter
33
 
#       Spreadsheet::WriteExcel::OLEwriter
34
 
#       Spreadsheet::WriteExcel::WorkbookBig
35
 
#       Spreadsheet::WriteExcel::Worksheet
36
 
#       Spreadsheet::WriteExcel::Format
37
 
#
38
 
sub new {
39
 
 
40
 
    my $class = shift;
41
 
    my $self  = Spreadsheet::WriteExcel::WorkbookBig->new($_[0]);
42
 
 
43
 
    bless  $self, $class;
44
 
    return $self;
45
 
}
46
 
 
47
 
 
48
 
1;
49
 
 
50
 
 
51
 
__END__
52
 
 
53
 
 
54
 
 
55
 
=head1 NAME
56
 
 
57
 
 
58
 
Big - A class for creating Excel files > 7MB.
59
 
 
60
 
 
61
 
=head1 SYNOPSIS
62
 
 
63
 
 
64
 
See the documentation for Spreadsheet::WriteExcel.
65
 
 
66
 
 
67
 
=head1 DESCRIPTION
68
 
 
69
 
 
70
 
This module is used in conjunction with Spreadsheet::WriteExcel.
71
 
 
72
 
    use Spreadsheet::WriteExcel::Big;
73
 
 
74
 
    my $workbook  = Spreadsheet::WriteExcel::Big->new("file.xls");
75
 
    my $worksheet = $workbook->add_worksheet();
76
 
 
77
 
    # Same as Spreadsheet::WriteExcel
78
 
    ...
79
 
    ...
80
 
 
81
 
 
82
 
=head1 REQUIREMENTS
83
 
 
84
 
IO::Stringy and OLE::Storage_Lite
85
 
 
86
 
 
87
 
=head1 AUTHOR
88
 
 
89
 
 
90
 
John McNamara jmcnamara@cpan.org
91
 
 
92
 
 
93
 
=head1 COPYRIGHT
94
 
 
95
 
 
96
 
� MM-MMV, John McNamara.
97
 
 
98
 
 
99
 
All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself.