File: Event.pm

package info (click to toggle)
libpoex-role-sessioninstantiation-perl 1.101040-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 184 kB
  • ctags: 10
  • sloc: perl: 460; makefile: 4
file content (40 lines) | stat: -rw-r--r-- 582 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package POEx::Role::Event;
BEGIN {
  $POEx::Role::Event::VERSION = '1.101040';
}

#ABSTRACT: Provide a decorator to label events

use MooseX::Declare;

role POEx::Role::Event
{
}
1;


=pod

=head1 NAME

POEx::Role::Event - Provide a decorator to label events

=head1 VERSION

version 1.101040

=head1 AUTHOR

  Nicholas Perez <nperez@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by Nicholas Perez.

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

=cut


__END__