| Devel-PerlySense documentation | Contained in the Devel-PerlySense distribution. |
Devel::PerlySense::Project::Unknown - A Project null object.
A Project::Unknown indicates the lack of a project being defined.
The effective project root dir.
Readonly.
Johan Lindström, <johanl[ÄT]DarSerMan.com>
Please report any bugs or feature requests to
bug-devel-perlysense@rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Devel-PerlySense.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
Copyright 2005 Johan Lindström, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Devel-PerlySense documentation | Contained in the Devel-PerlySense distribution. |
package Devel::PerlySense::Project::Unknown; use base "Devel::PerlySense::Project"; our $VERSION = '0.01'; use strict; use warnings; use Carp; use Data::Dumper;
sub dirProject { return ""; } 1; __END__