![]() |
VR-Link API Documentation for HLA 1516
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 00007 #if DtDIS 00008 00011 00012 #ifndef DtGriddedDataDecoder_H_ 00013 #define DtGriddedDataDecoder_H_ 00014 00015 #include "dStateDecoder.h" 00016 #include "gridDataPdu.h" 00017 #include "gridDataSR.h" 00018 00021 class DT_DLL_VL DtGriddedDataDecoder : public DtStateDecoder 00022 { 00023 public: 00025 DtGriddedDataDecoder(DtExerciseConn* conn); 00026 00028 virtual ~DtGriddedDataDecoder(); 00029 00031 DtGriddedDataDecoder(const DtGriddedDataDecoder& orig); 00032 00034 DtGriddedDataDecoder& operator=( 00035 const DtGriddedDataDecoder& orig); 00036 00038 virtual void decode( 00039 const DtGriddedDataPdu& pdu, 00040 DtGriddedDataRepository* stateRep); 00041 00042 protected: 00043 DtExerciseConn* myExConn; 00044 }; 00045 #endif 00046 #endif 00047