]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/mpfire/perl/Audio/MPD/Common/Item/Directory.pm
Finalized core13 and redirector fixes
[people/pmueller/ipfire-2.x.git] / config / mpfire / perl / Audio / MPD / Common / Item / Directory.pm
CommitLineData
83d20a45
CS
1#
2# This file is part of Audio::MPD::Common
3# Copyright (c) 2007 Jerome Quelin, all rights reserved.
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the same terms as Perl itself.
7#
8#
9
10package Audio::MPD::Common::Item::Directory;
11
12use strict;
13use warnings;
14
15use base qw[ Class::Accessor::Fast Audio::MPD::Common::Item ];
16__PACKAGE__->mk_accessors( qw[ directory ] );
17
18#our ($VERSION) = '$Rev: 5645 $' =~ /(\d+)/;
19
201;
21
22__END__
23
24
25=head1 NAME
26
27Audio::MPD::Common::Item::Directory - a directory object
28
29
30=head1 SYNOPSIS
31
32 print $item->directory . "\n";
33
34
35=head1 DESCRIPTION
36
37C<Audio::MPD::Common::Item::Directory> is more a placeholder for a
38hash ref with one pre-defined key, namely the directory name.
39
40
41=head1 PUBLIC METHODS
42
43This module only has a C<new()> constructor, which should only be called by
44C<Audio::MPD::Common::Item>'s constructor.
45
46The only other public method is an accessor: directory().
47
48
49=head1 SEE ALSO
50
51=over 4
52
53=item L<Audio::MPD>
54
55=item L<POE::Component::Client::MPD>
56
57=back
58
59
60=head1 AUTHOR
61
62Jerome Quelin, C<< <jquelin at cpan.org> >>
63
64
65=head1 COPYRIGHT & LICENSE
66
67Copyright (c) 2007 Jerome Quelin, all rights reserved.
68
69This program is free software; you can redistribute it and/or modify
70it under the same terms as Perl itself.
71
72=cut