Audio::MPD::Types - types used in the distribution


Audio-MPD documentation Contained in the Audio-MPD distribution.

Index


Code Index:

NAME

Top

Audio::MPD::Types - types used in the distribution

VERSION

Top

version 1.111200

DESCRIPTION

Top

This module implements the specific types used by the distribution, and exports them (exporting is done directly by Moose::Util::TypeConstraints.

Current types defined:

* CONNTYPE - a simple enumeration, allowing only reuse or once.

AUTHOR

Top

Jerome Quelin

COPYRIGHT AND LICENSE

Top


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__