| 1 |
root |
1.1 |
=head1 NAME |
| 2 |
|
|
|
| 3 |
root |
1.2 |
Convert::CD - import/export/represent various cd image file formats |
| 4 |
root |
1.1 |
|
| 5 |
|
|
=head1 SYNOPSIS |
| 6 |
|
|
|
| 7 |
|
|
use Convert::CD; |
| 8 |
|
|
|
| 9 |
|
|
# to be done |
| 10 |
|
|
|
| 11 |
|
|
=head1 DESCRIPTION |
| 12 |
|
|
|
| 13 |
|
|
Kidding? |
| 14 |
|
|
|
| 15 |
|
|
=head1 METHODS |
| 16 |
|
|
|
| 17 |
|
|
=over 4 |
| 18 |
|
|
|
| 19 |
|
|
=cut |
| 20 |
|
|
|
| 21 |
|
|
package Convert::CD; |
| 22 |
|
|
|
| 23 |
|
|
$VERSION = 0.01; |
| 24 |
|
|
|
| 25 |
|
|
=item new param => value... |
| 26 |
|
|
|
| 27 |
|
|
Create a new Convert::CD object. |
| 28 |
|
|
|
| 29 |
|
|
my $cd = new imgpath => "/tmp/mycd.bin"; |
| 30 |
|
|
|
| 31 |
|
|
=cut |
| 32 |
|
|
|
| 33 |
|
|
sub new { |
| 34 |
|
|
my $class = shift; |
| 35 |
root |
1.2 |
bless { |
| 36 |
|
|
track => [], # an array of tracks |
| 37 |
|
|
@_, |
| 38 |
|
|
}, $class; |
| 39 |
root |
1.1 |
# autodetect, read toc etc... |
| 40 |
|
|
} |
| 41 |
|
|
|
| 42 |
|
|
1; |
| 43 |
|
|
|
| 44 |
|
|
=back |
| 45 |
|
|
|
| 46 |
|
|
=head1 AUTHOR |
| 47 |
|
|
|
| 48 |
|
|
Marc Lehmann <pcg@goof.com> |
| 49 |
|
|
|
| 50 |
|
|
=cut |
| 51 |
|
|
|