Help for this page

Select Code to Download


  1. or download this
      use Object::InsideOut qw(class_insideout);
    
  2. or download this
      use base qw(class_insideout);
    
  3. or download this
    Sub-classes (child classes) inherit from base classes (parent classes)
    by telling Object::InsideOut what the parent class is:
    ...
    Object::InsideOut acts as a replacement for the "base" pragma:  It
    loads the parent module(s), calls their "->import()" methods, and sets
    up the sub-class's @ISA array.  Therefore, you should not "use base ..
    +." yourself