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

  1. //**********************************************************************
  2. //  DIVE Laboratories, Inc.
  3. //  Copyright(c) 1995
  4. //  All rights reserved.
  5. //  FILE:   LAW.HPP
  6. //
  7. //  DESCRIPTION
  8. //  This header provides the class definition for the
  9. //  lawClass
  10. //
  11. //**********************************************************************
  12. #ifndef _LAW_HPP
  13. #define _LAW_HPP
  14.  
  15. #include "kine.hpp"
  16.  
  17. class lawClass : public virtual kinematicClass {
  18.  
  19. private:
  20.  
  21. public:
  22.  
  23.     int lawID;
  24.  
  25.     lawClass();
  26.  
  27.     ~lawClass();
  28.  
  29. };
  30.  
  31. #endif
  32.