home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Editores / Perl5 / perl / lib / site / Tk / Label.pm < prev    next >
Encoding:
Perl POD Document  |  1997-08-10  |  301 b   |  18 lines

  1. # Copyright (c) 1995-1997 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.  
  5. package Tk::Label; 
  6. require Tk;
  7.  
  8. @ISA = qw(Tk::Widget);
  9.  
  10. Construct Tk::Widget 'Label';
  11.  
  12. sub Tk_cmd { \&Tk::label }
  13.  
  14. 1;
  15.  
  16.  
  17.  
  18.