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

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. /* 
  21.   a very simple implementation of a class to output unix "plot"
  22.   format plotter files. See corresponding unix man pages for
  23.   more details. 
  24.   written by Doug Lea (dl@rocky.oswego.edu)
  25.   converted to use iostream library by Per Bothner (bothner@cygnus.com)
  26. */
  27. #ifndef _PlotFile_h
  28. #ifdef __GNUG__
  29. #pragma interface
  30. #endif
  31. #define _PlotFile_h
  32. #include <fstream.h>
  33. /*   
  34.    Some plot libraries have the `box' command to draw boxes. Some don't.
  35.    `box' is included here via moves & lines to allow both possiblilties.
  36. */
  37. extern "C++" {
  38. class PlotFile : public ofstream
  39. {
  40. protected:
  41.   PlotFile& cmd(char c);
  42.   PlotFile& operator << (const int x);
  43.   PlotFile& operator << (const char *s);
  44.   
  45. public:
  46.   
  47.   PlotFile() : ofstream() { }
  48.   PlotFile(int fd) : ofstream(fd) { }
  49.   PlotFile(const char *name, int mode=ios::out, int prot=0664)
  50.       : ofstream(name, mode, prot) { }
  51.   
  52. //  PlotFile& remove() { ofstream::remove(); return *this; }
  53.   
  54. //  int           filedesc() { return ofstream::filedesc(); }
  55. //  const char*   name() { return File::name(); }
  56. //  void          setname(const char* newname) { File::setname(newname); }
  57. //  int           iocount() { return File::iocount(); }
  58.   
  59.   PlotFile& arc(const int xi, const int yi,
  60.                 const int x0, const int y0,
  61.                 const int x1, const int y1);
  62.   PlotFile& box(const int x0, const int y0,
  63.                 const int x1, const int y1);
  64.   PlotFile& circle(const int x, const int y, const int r);
  65.   PlotFile& cont(const int xi, const int yi);
  66.   PlotFile& dot(const int xi, const int yi, const int dx,
  67.                 int n, const int* pat);
  68.   PlotFile& erase(); 
  69.   PlotFile& label(const char* s);
  70.   PlotFile& line(const int x0, const int y0,
  71.                  const int x1, const int y1);
  72.   PlotFile& linemod(const char* s);
  73.   PlotFile& move(const int xi, const int yi);
  74.   PlotFile& point(const int xi, const int yi);
  75.   PlotFile& space(const int x0, const int y0,
  76.                   const int x1, const int y1);
  77. };
  78. } // extern "C++"
  79. #endif