home *** CD-ROM | disk | FTP | other *** search
- //**********************************************************************
- // DIVE Laboratories, Inc.
- // Copyright(c) 1995
- // All rights reserved.
- // FILE: LOD.HPP
- //
- // DESCRIPTION
- // This file provides the function prototypes for the lodClass
- //
- // Author: M. Doucet
- //
- // Modification History:
- // 6/13/95 Created
- //
- //**********************************************************************
- #ifndef _LOD_HPP
- #define _LOD_HPP
-
- #include "geometry.hpp"
-
- class lodClass {
-
- public:
-
- double range;
- geometryClass *geo;
-
- lodClass();
- ~lodClass();
-
- };
-
- #endif
-