NAME
Toader::Render::supportedBackends - This checks if the backend is supported or not.
VERSION
Version 0.1.0
SYNOPSIS
METHODS
new
This initiates the object.
There is no reason to check for any errors as this module will not throw any errors upon initilization.
my $foo=Toader::Render::supportedBackends->new;
checkBE
This checks if the specified for the object exists or not.
One argument is required and that is the object to check.
my $results=$foo->checkBE( $obj );
if ( $foo->error ){
warn( 'Error:'.$foo->error.': '.$foo->errorString );
}else{
if ( $results ){
print "It is supported.\n";
}
}
ERROR CODES
1, noObj
No object defined.
2, unsupportedObj
Unsupported object type.
AUTHOR
Zane C. Bowers-Hadley, <vvelox at vvelox.net>
BUGS
Please report any bugs or feature requests to bug-toader at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Toader. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Toader::Render::supportedBackends
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2013. Zane C. Bowers-Hadley.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.