| Audio-MPD documentation | Contained in the Audio-MPD distribution. |
Audio::MPD::Types - types used in the distribution
version 1.111200
This module implements the specific types used by the distribution, and exports them (exporting is done directly by Moose::Util::TypeConstraints.
Current types defined:
reuse
or once.Jerome Quelin
This software is copyright (c) 2007 by Jerome Quelin.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Audio-MPD documentation | Contained in the Audio-MPD distribution. |
# # This file is part of Audio-MPD # # This software is copyright (c) 2007 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.008; use warnings; use strict; package Audio::MPD::Types; BEGIN { $Audio::MPD::Types::VERSION = '1.111200'; } # ABSTRACT: types used in the distribution use Moose::Util::TypeConstraints; enum CONNTYPE => qw{ reuse once }; 1;
__END__