The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package SLOOPS::Tut::WDW ;

use base qw/Class::AutoAccess/ ;
   
our $PERSIST = {
    'references' => 
    {
	'who' => 'SLOOPS::Tut::Person' ,
	'what' => 'SLOOPS::Tut::Vehicule' # Polymorphism support !!
	}
};


sub new{
    my ($class) = @_ ;
    
    my $self = {
	'who' => undef,
	'what' => undef
	};
    return bless $self, $class ;
}
1;