mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-11 11:35:54 +02:00
89 lines
1.7 KiB
Perl
89 lines
1.7 KiB
Perl
#
|
|
# This file is part of Audio::MPD::Common
|
|
# Copyright (c) 2007 Jerome Quelin, all rights reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the same terms as Perl itself.
|
|
#
|
|
#
|
|
|
|
package Audio::MPD::Common;
|
|
|
|
use warnings;
|
|
use strict;
|
|
our $VERSION = '0.1.2';
|
|
|
|
1;
|
|
|
|
__END__
|
|
|
|
|
|
=head1 NAME
|
|
|
|
Audio::MPD::Common - a bunch of common helper classes for mpd
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Depending on whether you're using a POE-aware environment or not, people
|
|
wanting to tinker with mpd (Music Player Daemon) will use either
|
|
L<POE::Component::Client::MPD> or L<Audio::MPD>.
|
|
|
|
But even if the run-cores of those two modules differ completely, they
|
|
are using the exact same common classes to represent the various mpd
|
|
states and information.
|
|
|
|
Therefore, those common classes have been outsourced to
|
|
L<Audio::MPD::Common>.
|
|
|
|
This module does not export any methods, but the dist provides the
|
|
following classes that you can query with perldoc:
|
|
|
|
=over 4
|
|
|
|
=item o L<Audio::MPD::Common::Item>
|
|
|
|
=item o L<Audio::MPD::Common::Item::Directory>
|
|
|
|
=item o L<Audio::MPD::Common::Item::Playlist>
|
|
|
|
=item o L<Audio::MPD::Common::Item::Song>
|
|
|
|
=item o L<Audio::MPD::Common::Stats>
|
|
|
|
=item o L<Audio::MPD::Common::Status>
|
|
|
|
=item o L<Audio::MPD::Common::Time>
|
|
|
|
=back
|
|
|
|
|
|
Note that those modules should not be of any use outside the two mpd
|
|
modules afore-mentioned.
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
=over 4
|
|
|
|
=item L<Audio::MPD>
|
|
|
|
=item L<POE::Component::Client::MPD>
|
|
|
|
=back
|
|
|
|
|
|
=head1 AUTHOR
|
|
|
|
Jerome Quelin, C<< <jquelin at cpan.org> >>
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE
|
|
|
|
Copyright (c) 2007 Jerome Quelin, all rights reserved.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the same terms as Perl itself.
|
|
|
|
=cut
|