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 / Menubar.pm < prev    next >
Encoding:
Perl POD Document  |  2003-08-24  |  382 b   |  16 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::Menubar;
  5. use strict;
  6.  
  7. use vars qw($VERSION);
  8. $VERSION = '4.006'; # $Id: //depot/Tkutf8/Tk/Menubar.pm#6 $
  9.  
  10. use Tk::Frame;
  11. use Tk::Menu;
  12. # use Carp;
  13. # carp "Tk::Menubar is obsolete" if $^W;
  14.  
  15. 1;
  16.