home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / auto / URI / URL / newlocal.al < prev    next >
Text File  |  1997-12-13  |  235b  |  12 lines

  1. # NOTE: Derived from :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, $path) = @_;
  8.     newlocal URI::URL::file $path;  # pass it on the the file class
  9. }
  10.  
  11. 1;
  12.