home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / Message.pm < prev    next >
Encoding:
Perl POD Document  |  2003-07-20  |  419 b   |  21 lines

  1. # Copyright (c) 1995-2003 Nick Ing-Simmons. All rights reserved.
  2. # This program is free software; you can redistribute it and/or
  3. # modify it under the same terms as Perl itself.
  4. package Tk::Message;
  5. use strict;
  6.  
  7. use vars qw($VERSION);
  8. $VERSION = '4.006'; # $Id: //depot/Tkutf8/Tk/Message.pm#6 $
  9.  
  10. require Tk::Widget;
  11.  
  12. use base  qw(Tk::Widget);
  13.  
  14. Construct Tk::Widget 'Message';
  15.  
  16. sub Tk_cmd { \&Tk::message }
  17.  
  18. 1;
  19. __END__
  20.  
  21.