![]() |
VR-Link API Documentation for HLA Evolved
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 00007 #ifndef smoothOriWDR_H_ 00008 #define smoothOriWDR_H_ 00009 00010 #include "smoothUtil.h" 00011 00015 00016 class DtDeadReckoner; 00017 00025 class DT_DLL_VLPROTIND DtSmoothOriWithDr : public DtSmoothOrient 00026 { 00027 public: 00028 00031 DtSmoothOriWithDr(DtDeadReckoner* dr, DtTime smoothT); 00032 00034 virtual ~DtSmoothOriWithDr(); 00035 00036 private: 00037 00039 DtSmoothOriWithDr(const DtSmoothOriWithDr& orig); 00040 00042 DtSmoothOriWithDr& operator=(const DtSmoothOriWithDr& orig); 00043 00044 protected: 00045 00047 virtual void dfltAction(DtTime simTime, 00048 void *usr, DtDcm& os); 00049 }; 00050 00051 #endif 00052