root/lang/perl/App-MadEye/trunk/lib/App/MadEye/Rule.pm @ 8012

Revision 7563, 192 bytes (checked in by tokuhirom, 5 years ago)

やべー。svk add すんのわすれてたyp!

Line 
1package App::MadEye::Rule;
2use strict;
3use warnings;
4
5sub new {
6    my ($class, $config) = @_;
7    $config ||= {};
8    bless {config => $config}, $class;
9}
10
11sub config { $_[0]->{config} }
12
131;
Note: See TracBrowser for help on using the browser.