diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 22:58:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 22:58:36 +0000 |
commit | 232e6423b66ecd84a5b9e26abf5068861e9f7890 (patch) | |
tree | e83fc0c553b673d3abecde65674e999c0d0b4757 /MDK/Common.pm | |
parent | 0694b88d08b2b55576f1854e9ce78246fbb51a6a (diff) | |
download | perl_checker-232e6423b66ecd84a5b9e26abf5068861e9f7890.tar perl_checker-232e6423b66ecd84a5b9e26abf5068861e9f7890.tar.gz perl_checker-232e6423b66ecd84a5b9e26abf5068861e9f7890.tar.bz2 perl_checker-232e6423b66ecd84a5b9e26abf5068861e9f7890.tar.xz perl_checker-232e6423b66ecd84a5b9e26abf5068861e9f7890.zip |
everything should work now
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"; |