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 / TIEARRAY.al < prev    next >
Encoding:
Text File  |  2003-12-16  |  427 b   |  16 lines

  1. # NOTE: Derived from ..\blib\lib\Tk\Listbox.pm.
  2. # Changes made here will be lost when autosplit is run again.
  3. # See AutoSplit.pm.
  4. package Tk::Listbox;
  5.  
  6. #line 160 "..\blib\lib\Tk\Listbox.pm (autosplit into ..\blib\lib\auto\Tk\Listbox\TIEARRAY.al)"
  7. sub TIEARRAY {
  8.   my ( $class, $obj, %options ) = @_;
  9.   return bless {
  10.         OBJECT => \$obj,
  11.         OPTION => \%options }, $class;
  12. }
  13.  
  14. # end of Tk::Listbox::TIEARRAY
  15. 1;
  16.