![]() |
VR-Link API Documentation for HLA Evolved
|
00001 /******************************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 00008 00009 #ifndef DtEnvironmentalGeometryRecord_H_ 00010 #define DtEnvironmentalGeometryRecord_H_ 00011 00012 00013 #include "envRec.h" 00014 00015 00021 00022 class DT_DLL_VL DtEnvironmentalGeometryRecord : public DtEnvironmentalRecord 00023 { 00024 public: 00025 00027 DtEnvironmentalGeometryRecord(); 00028 00030 DtEnvironmentalGeometryRecord(const DtEnvironmentalGeometryRecord& orig); 00031 00033 const DtEnvironmentalGeometryRecord& operator=( 00034 const DtEnvironmentalGeometryRecord& orig); 00035 00037 virtual ~DtEnvironmentalGeometryRecord(); 00038 00040 virtual DtEnvironmentalRecord* clone() const; 00041 00044 virtual void setHasState(bool hasState); 00045 virtual bool hasState() const; 00046 00047 protected: 00048 00049 bool myHasState; 00050 }; 00051 00052 00053 #endif 00054