NAME

Perl::Dist::WiX::Types - Public types used in Perl::Dist::WiX.

VERSION

This document describes Perl::Dist::WiX::Types version 1.500001.

SYNOPSIS

use Perl::Dist::WiX::Types qw( ExistingDirectory ExistingFile TemplateObj );

DESCRIPTION

This module exists to provide Moose types that Perl::Dist::WiX and subclasses can use.

It may be updated or replaced at any time.

TYPES PROVIDED

ExistingDirectory

has bar => (
	is => 'ro',
	isa => ExistingDirectory,
	#...
);

ExistingFile

has bar => (
	is => 'ro',
	isa => ExistingFile,
	#...
);

TemplateObj

has bar => (
	is => 'ro',
	isa => TemplateObj,
	#...
);

SUPPORT

No support is available for this class.

AUTHOR

Curtis Jewell <csjewell@cpan.org>

COPYRIGHT AND LICENSE

Copyright 2009 - 2011 Curtis Jewell.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this distribution.