Let's say I've got a simple DateTime subclass with some local extras
attached:

    package My::DateTime;
    use base 'DateTime';

    sub first_of_the_month {
        my $self = shift;
        $self->set(day => 1);
    }

How do I get the DateTime::Format modules to return My::DateTime objects
instead of DateTime?


-- 
Michael G Schwern        [EMAIL PROTECTED]  http://www.pobox.com/~schwern/
I knew right away that my sock and your eyebrows could be best friends.

Reply via email to