home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-perl-addon-1.4.9-installer.exe / Exec.pm < prev    next >
Encoding:
Perl POD Document  |  2003-09-17  |  644 b   |  41 lines

  1. package Filter::Util::Exec ;
  2.  
  3. require 5.002 ;
  4. require DynaLoader;
  5. use strict;
  6. use warnings;
  7. use vars qw(@ISA $VERSION) ;
  8. @ISA = qw(DynaLoader);
  9. $VERSION = "1.02" ;
  10.  
  11. bootstrap Filter::Util::Exec ;
  12. 1 ;
  13. __END__
  14.  
  15. =head1 NAME
  16.  
  17. Filter::Util::Exec - exec source filter
  18.  
  19. =head1 SYNOPSIS
  20.  
  21.     use Filter::Util::Exec;
  22.  
  23. =head1 DESCRIPTION
  24.  
  25. This module is provides the interface to allow the creation of I<Source
  26. Filters> which use a Unix coprocess.
  27.  
  28. See L<Filter::exec>, L<Filter::cpp> and L<Filter::sh> for examples of
  29. the use of this module.
  30.  
  31. =head1 AUTHOR
  32.  
  33. Paul Marquess
  34.  
  35. =head1 DATE
  36.  
  37. 11th December 1995.
  38.  
  39. =cut
  40.  
  41.