![]() |
VR-Link API Documentation for HLA Evolved
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 #ifndef smoothPosWDR_H_ 00007 #define smoothPosWDR_H_ 00008 00009 #include "smoothUtil.h" 00010 00014 00015 class DtDeadReckoner; 00016 00023 class DT_DLL_VLPROTIND DtSmoothPosWithDr : public DtSmoothPos 00024 { 00025 public: 00026 00029 DtSmoothPosWithDr(DtDeadReckoner* dr, DtTime smoothT); 00030 00032 virtual ~DtSmoothPosWithDr(); 00033 00034 private: 00035 00037 DtSmoothPosWithDr(const DtSmoothPosWithDr& orig); 00038 00040 DtSmoothPosWithDr& operator=(const DtSmoothPosWithDr& orig); 00041 00042 protected: 00043 00045 virtual void dfltAction(DtTime simTime, void* usr, 00046 DtVector& vs, DtVector& ps); 00047 }; 00048 00049 #endif 00050