|
NAMERose::Object - A simple object base class. SYNOPSIS package MyObject;
use Rose::Object;
our @ISA = qw(Rose::Object);
sub foo { ... }
sub bar { ... }
...
my $o = MyObject->new(foo => 'abc', bar => 5);
...
DESCRIPTIONRose::Object is a generic object base class. It provides very little functionality, but a healthy dose of convention. METHODS
AUTHORJohn C. Siracusa (siracusa@gmail.com) LICENSECopyright (c) 2010 by John C. Siracusa. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|