home *** CD-ROM | disk | FTP | other *** search
/ Photo CD Demo 1 / Demo.bin / graphtal / exampldv.h < prev    next >
C/C++ Source or Header  |  1992-10-23  |  1KB  |  41 lines

  1. /*
  2.  * ExampleDevice.h - class definition of example device driver.
  3.  *
  4.  * Copyright (C) 1992, Christoph Streit (streit@iam.unibe.ch)
  5.  * All rights reserved.
  6.  *
  7.  * This software may be freely copied, modified, and redistributed
  8.  * provided that this copyright notice is preserved on all copies.
  9.  *
  10.  * You may not distribute this software, in whole or in part, as part of
  11.  * any commercial product without the express consent of the authors.
  12.  *
  13.  * There is no warranty or other guarantee of fitness of this software
  14.  * for any purpose.  It is provided solely "as is".
  15.  *
  16.  */
  17.  
  18. #ifndef ExampleDevice_H
  19. # define ExampleDevice_H
  20.  
  21. #include "DeviceDriver.h"
  22.  
  23. //___________________________________________________________ ExampleDevice
  24.  
  25. class ExampleDevice : public DeviceDriver 
  26. {
  27. public:
  28.   ExampleDevice();
  29.  
  30.   void begin();
  31.   void end(const BoundingBox&);
  32.   void cylinder(const Vector&, const Vector&, real);
  33.   void cone(const Vector&, real, const Vector&, real);
  34.   void sphere(const Vector&, real);
  35.   void polygon(Polygon*);
  36. };
  37.  
  38. #endif // ExampleDevice_H
  39.  
  40.  
  41.