| iPodDB documentation | Contained in the iPodDB distribution. |
iPodDB::Database - iPod music database
my $database = iPodDB::Database->new( $file );
This module encapsulates the iPod database.
Loads the iPod database. Returns undef if a failure occurs.
Copyright 2004 by Brian Cassidy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| iPodDB documentation | Contained in the iPodDB distribution. |
package iPodDB::Database;
use base qw( Mac::iPod::DB ); use strict; use warnings; our $VERSION = '0.01';
sub new { my $class = shift; my $file = shift; my $self; eval{ $self = $class->SUPER::new( $file ); }; return undef unless $self; bless $self, $class; return $self; }
1;