diff options
Diffstat (limited to 'MDK/Common.pm')
| -rw-r--r-- | MDK/Common.pm | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/MDK/Common.pm b/MDK/Common.pm index 4cccc21..dbc161c 100644 --- a/MDK/Common.pm +++ b/MDK/Common.pm @@ -1,12 +1,17 @@ package MDK::Common; -use MDK::Common::DataStructure ':all'; -use MDK::Common::File ':all'; -use MDK::Common::Func ':all'; -use MDK::Common::Math ':all'; -use MDK::Common::String ':all'; -use MDK::Common::System ':all'; -use MDK::Common::Various ':all'; +use MDK::Common::DataStructure qw(:all); +use MDK::Common::File qw(:all); +use MDK::Common::Func qw(:all); +use MDK::Common::Math qw(:all); +use MDK::Common::String qw(:all); +use MDK::Common::System qw(:all); +use MDK::Common::Various qw(:all); + +use vars qw(@ISA @EXPORT $VERSION); #); +@ISA = qw(Exporter); +# perl_checker: RE-EXPORT-ALL +@EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; $VERSION = "1.0"; |
