package MyTk::MyDocument; use Common; @ISA = qw(Common); use strict; BEGIN { } sub new { my ($module, $path) = @_; my $this = {}; bless $this; return $this; } sub DESTROY { my $this = shift; # $this->SUPER::DESTROY(@_); } 1;