#============================================================ # MakeSummaryCSV2Params #============================================================ package MakeSummaryCSV2Params; use Common; @ISA = qw(Common); #公開したい変数 @EXPORT = qw( ); #@EXPORT_OK = qw(); use strict; #========================================== # 大域変数 #========================================== #============================================================ # コンストラクタ、デストラクタ #============================================================ sub new { my ($module) = @_; my $this = {}; bless $this; # $this->SUPER::new(@_); return $this; } sub DESTROY { my $this = shift; $this->SUPER::DESTROY(@_); }