The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Toader::Render::supportedObjects - This checks if a object is supported or not for rendering.

VERSION

Version 0.0.0

SYNOPSIS

METHODS

new

This initiates the object.

        my $foo=Toader::Render::supportedObjects->new;
    if($foo->error){
        warn('error: '.$foo->error.":".$foo->errorString);
    }

isSupported

This checks if a object is supported or not.

One argument is required and it is the object to check.

Error checking is only needed as long as what is passed is known to be defined.

    my $supported=$foo->isSupported( $obj );
    if ( $foo->error ){
        warn( 'Error:'.$foo->error.': '.$foo->errorString );
    }else{
        if ( $supported ){
            print "The object is supported.\n";
        }
    }

ERROR CODES

1

No object has been passed.

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::supportedObjects

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2011. 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.