# ============================================== # # module interface # # ============================================== # package Logmsg; # for example -- name as you think best use strict; use Exporter(); our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); # set the version for version checking $VERSION = 1.0; @ISA = qw(Exporter); @EXPORT = qw( # autoexported symbols &logstart &logmsg &logstr &logstop &logstack ); %EXPORT_TAGS = (); # symbol groupings @EXPORT_OK = (); # symbols exported on request # ============================================== # # module code # # ============================================== # # ============================================== # # at end of file # # ============================================== # 1;