IOC::Interfaces - Interfaces for the IOC Framework


IOC documentation Contained in the IOC distribution.

Index


Code Index:

NAME

Top

IOC::Interfaces - Interfaces for the IOC Framework

SYNOPSIS

Top

  use IOC::Interfaces;

DESCRIPTION

Top

This module creates a couple of class interfaces which are used in other parts of the IOC framework.

INTERFACES

Top

IOC::Visitable
IOC::Visitor

TO DO

Top

Work on the documentation

BUGS

Top

None that I am aware of. Of course, if you find a bug, let me know, and I will be sure to fix it.

CODE COVERAGE

Top

I use Devel::Cover to test the code coverage of my tests, see the CODE COVERAGE section of IOC for more information.

SEE ALSO

Top

Class::Interfaces

The interfaces are generated inline by another module I wrote called Class::Interfaces

AUTHOR

Top

stevan little, <stevan@iinteractive.com>

COPYRIGHT AND LICENSE

Top


IOC documentation Contained in the IOC distribution.

package IOC::Interfaces;

use strict;
use warnings;

our $VERSION = '0.02';

use Class::Interfaces (
        'IOC::Visitable' => [ 'accept' ],
        'IOC::Visitor'   => [ 'visit'  ],
        );

1;

__END__