pfstream.h
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:2k
源码类别:

STL

开发平台:

Visual C++

  1. /* This is part of libio/iostream, providing -*- C++ -*- input/output.
  2. Copyright (C) 1993 Free Software Foundation
  3. This file is part of the GNU IO Library.  This library is free
  4. software; you can redistribute it and/or modify it under the
  5. terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this library; see the file COPYING.  If not, write to the Free
  14. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  15. As a special exception, if you link this library with files
  16. compiled with a GNU compiler to produce an executable, this does not cause
  17. the resulting executable to be covered by the GNU General Public License.
  18. This exception does not however invalidate any other reasons why
  19. the executable file might be covered by the GNU General Public License. */
  20. /* Written by Per Bothner (bothner@cygnus.com). */
  21. #ifndef _PFSTREAM_H
  22. #define _PFSTREAM_H
  23. #ifdef __GNUG__
  24. #pragma interface
  25. #endif
  26. #include <fstream.h>
  27. extern "C++" {
  28. // ipfstream foo("NAME") is like: ifstream foo("NAME").  However,
  29. // if NAME starts *or ends* with a '|', the remainder of NAME is
  30. // evaluated as a shell command (using a procbuf), and all input
  31. // read from foo is whatever that shell writes to its standard output.
  32. // E.g. ipfstream foo("|zcat foo.Z") or ipfstream foo("zcat foo.Z|")
  33. // (These two forms are equivalent.)
  34. class ipfstream : public ifstream {
  35.   public:
  36.     ipfstream(const char *name, int mode=ios::in, int prot=0664);
  37. };
  38. // opfstream foo("NAME") is like: ofstream foo("NAME").
  39. // However, if NAME starts with a '|', the remainder of NAME is
  40. // evaluated as a shell command (using a procbuf), and all output
  41. // written to foo is piped to the standard input of that shell.
  42. // E.g. opfstream foo("|more");
  43. class opfstream : public ofstream {
  44.   public:
  45.     opfstream(const char *name, int mode=ios::out, int prot=0664);
  46. };
  47. } // extern "C++"
  48. #endif /*!_PFSTREAM_H*/