home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl_ste.zip / auto / URI / URL / newlocal.al < prev    next >
Text File  |  1997-11-28  |  246b  |  12 lines

  1. # NOTE: Derived from ./blib/lib/URI/URL.pm.  Changes made here will be lost.
  2. package URI::URL;
  3.  
  4. sub newlocal
  5. {
  6.     require URI::URL::file;
  7.     my $class = shift;
  8.     URI::URL::file->newlocal(@_);  # pass it on the the file class
  9. }
  10.  
  11. 1;
  12.