home *** CD-ROM | disk | FTP | other *** search
/ VRML Tools for 3D Cyberspace / VRML_Tools_For_3D_Cyberspace.iso / amber / include / style.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-01  |  649 b   |  37 lines

  1. //**********************************************************************
  2. //  DIVE Laboratories, Inc.
  3. //  Copyright(c) 1995
  4. //  All rights reserved.
  5. //  FILE:   STYLE.HPP
  6. //
  7. //  DESCRIPTION
  8. //  This header provides the class definition for the
  9. //  styleClass
  10. //
  11. //**********************************************************************
  12. #ifndef STYLE
  13. #define STYLE
  14.  
  15. #include "slink.hpp"
  16.  
  17. class styleClass {
  18.  
  19. private:
  20.  
  21.  
  22. public:
  23.  
  24.     static sLinkClass list;
  25.    int rate;
  26.    int phase;
  27.  
  28.    virtual void style(void) = 0;
  29.  
  30.    styleClass(int styleRate, int stylePhase);
  31.    styleClass();
  32.    virtual ~styleClass();
  33.  
  34. };
  35.  
  36. #endif
  37.