ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Convert-CD/lib/Convert/CD.pm
Revision: 1.2
Committed: Mon Jun 9 19:53:45 2003 UTC (23 years, 3 months ago) by root
Branch: MAIN
Changes since 1.1: +5 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
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