[project @ 7050]
[audio-mpd-common.git] / lib / Audio / MPD / Common.pm
blob07de83c201e107b14fc4c7bb173c5332cd248176
2 # This file is part of Audio::MPD::Common
3 # Copyright (c) 2007 Jerome Quelin, all rights reserved.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the same terms as Perl itself.
10 package Audio::MPD::Common;
12 use warnings;
13 use strict;
14 our $VERSION = '0.1.2';
18 __END__
21 =head1 NAME
23 Audio::MPD::Common - a bunch of common helper classes for mpd
26 =head1 DESCRIPTION
28 Depending on whether you're using a POE-aware environment or not, people
29 wanting to tinker with mpd (Music Player Daemon) will use either
30 L<POE::Component::Client::MPD> or L<Audio::MPD>.
32 But even if the run-cores of those two modules differ completely, they
33 are using the exact same common classes to represent the various mpd
34 states and information.
36 Therefore, those common classes have been outsourced to
37 L<Audio::MPD::Common>.
39 This module does not export any methods, but the dist provides the
40 following classes that you can query with perldoc:
42 =over 4
44 =item o L<Audio::MPD::Common::Item>
46 =item o L<Audio::MPD::Common::Item::Directory>
48 =item o L<Audio::MPD::Common::Item::Playlist>
50 =item o L<Audio::MPD::Common::Item::Song>
52 =item o L<Audio::MPD::Common::Stats>
54 =item o L<Audio::MPD::Common::Status>
56 =item o L<Audio::MPD::Common::Time>
58 =back
61 Note that those modules should not be of any use outside the two mpd
62 modules afore-mentioned.
65 =head1 SEE ALSO
67 =over 4
69 =item L<Audio::MPD>
71 =item L<POE::Component::Client::MPD>
73 =back
76 =head1 AUTHOR
78 Jerome Quelin, C<< <jquelin at cpan.org> >>
81 =head1 COPYRIGHT & LICENSE
83 Copyright (c) 2007 Jerome Quelin, all rights reserved.
85 This program is free software; you can redistribute it and/or modify
86 it under the same terms as Perl itself.
88 =cut