![]() |
VR-Link API Documentation for HLA 1.3
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 00007 #ifndef DtStopFreezeDecoder_H_ 00008 #define DtStopFreezeDecoder_H_ 00009 00010 00014 #if DtHLA 00015 00016 #include "interDecoder.h" 00017 00018 00019 00020 class DT_DLL_VL DtStopFreezeInteraction; 00021 00024 00025 #define DtDECLARE_STOP_PARAM_DECODER(paramName) \ 00026 DtDECLARE_PARAM_DECODER(DtStopFreezeInteraction, paramName) 00027 00028 #define DtDEFINE_SIMPLE_STOP_PARAM_DECODER( \ 00029 paramName, netType, mutator) \ 00030 DtDEFINE_SIMPLE_PARAM_DECODER( \ 00031 DtStopFreezeDecoder, DtStopFreezeInteraction, \ 00032 paramName, netType, mutator) 00033 00034 #define DtDEFINE_SIMPLE_STOP_PARAM_DECODER_WITH_CAST( \ 00035 paramName, netType, mutator, castExpr) \ 00036 DtDEFINE_SIMPLE_PARAM_DECODER_WITH_CAST( \ 00037 DtStopFreezeDecoder, DtStopFreezeInteraction, \ 00038 paramName, netType, mutator, castExpr) 00039 00042 00043 class DT_DLL_VL DtStopFreezeDecoder : public DtInteractionDecoder 00044 { 00045 public: 00046 00048 DtStopFreezeDecoder(DtExerciseConn* exConn, 00049 DtInterClassDesc* classDesc); 00050 00052 virtual ~DtStopFreezeDecoder(); 00053 00055 DtStopFreezeDecoder(const DtStopFreezeDecoder& orig); 00056 00058 DtStopFreezeDecoder& operator=(const DtStopFreezeDecoder& orig); 00059 00060 protected: 00061 00063 00064 DtDECLARE_STOP_PARAM_DECODER(OriginatingEntity); 00065 DtDECLARE_STOP_PARAM_DECODER(ReceivingEntity); 00066 DtDECLARE_STOP_PARAM_DECODER(RequestIdentifier); 00067 DtDECLARE_STOP_PARAM_DECODER(RealWorldTime); 00068 DtDECLARE_STOP_PARAM_DECODER(Reason); 00069 DtDECLARE_STOP_PARAM_DECODER(ReflectValues); 00070 DtDECLARE_STOP_PARAM_DECODER(RunInternalSimulationClock); 00071 DtDECLARE_STOP_PARAM_DECODER(UpdateAttributes); 00073 DtDECLARE_STOP_PARAM_DECODER(RequestID); 00074 }; 00075 00076 #endif 00077 #endif 00078