# Copyrights 2001-2004,2007 by Mark Overmeer . # For other contributors see Changes. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 1.00. package C::D; use vars '$VERSION'; $VERSION = '0.18'; use base 'C'; use Object::Realize::Later ( becomes => 'A::B' , realize => 'load' , warn_realization => 1 , warn_realize_again => 1 ); sub load() { bless {}, 'A::B' } sub c_d() {'c_d'} 1;