home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / pstoedit.zip / source.zip / pstoedit.2.50 / src / drvrib.h < prev    next >
C/C++ Source or Header  |  1996-10-04  |  1KB  |  47 lines

  1. #ifndef __drvRIB_h
  2. #define __drvRIB_h
  3.  
  4. /* 
  5.    drvrib.h - header for RenderMan RIB polygon driver
  6.             - written by Glenn M. Lewis (glewis@c2.net) - 6/18/96
  7.               http://www.c2.net/~glewis/
  8.               Based on...
  9.  
  10.    drvsampl.h : This file is part of pstoedit
  11.    Class declaration for a sample output driver with no additional attributes
  12.    and methods (minimal interface)
  13.  
  14.    Copyright (C) 1993,1994,1995,1996 Wolfgang Glunz, Wolfgang.Glunz@zfe.siemens.de
  15.  
  16.     This program is free software; you can redistribute it and/or modify
  17.     it under the terms of the GNU General Public License as published by
  18.     the Free Software Foundation; either version 2 of the License, or
  19.     (at your option) any later version.
  20.  
  21.     This program is distributed in the hope that it will be useful,
  22.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24.     GNU General Public License for more details.
  25.  
  26.     You should have received a copy of the GNU General Public License
  27.     along with this program; if not, write to the Free Software
  28.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  29.  
  30. */
  31.  
  32. #include "drvbase.h"
  33.  
  34. class drvRIB : public drvbase {
  35.  
  36. public:
  37.  
  38.     drvRIB(const char * driveroptions_P,ostream & theoutStream,ostream & theerrStream ); // Constructor
  39.  
  40.     ~drvRIB(); // Destructor
  41.  
  42. #include "drvfuncs.h"
  43.  
  44. };
  45.  
  46. #endif
  47.