=head1 NAME Convert::CD - import/export/represent various cd image file formats =head1 SYNOPSIS use Convert::CD; # to be done =head1 DESCRIPTION Kidding? =head1 METHODS =over 4 =cut package Convert::CD; $VERSION = 0.01; =item new param => value... Create a new Convert::CD object. my $cd = new imgpath => "/tmp/mycd.bin"; =cut sub new { my $class = shift; bless { track => [], # an array of tracks @_, }, $class; # autodetect, read toc etc... } 1; =back =head1 AUTHOR Marc Lehmann =cut