![]() |
VR-Link API Documentation for HLA Evolved
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 #ifndef DtStartResumeDecoder_H_ 00007 #define DtStartResumeDecoder_H_ 00008 00012 00013 #if DtHLA 00014 00015 #include "interDecoder.h" 00016 00017 00018 class DT_DLL_VL DtStartResumeInteraction; 00019 00022 00023 #define DtDECLARE_START_PARAM_DECODER(paramName) \ 00024 DtDECLARE_PARAM_DECODER(DtStartResumeInteraction, paramName) 00025 00026 #define DtDEFINE_SIMPLE_START_PARAM_DECODER( \ 00027 paramName, netType, mutator) \ 00028 DtDEFINE_SIMPLE_PARAM_DECODER( \ 00029 DtStartResumeDecoder, DtStartResumeInteraction, \ 00030 paramName, netType, mutator) 00031 00032 #define DtDEFINE_SIMPLE_START_PARAM_DECODER_WITH_CAST( \ 00033 paramName, netType, mutator, castExpr) \ 00034 DtDEFINE_SIMPLE_PARAM_DECODER_WITH_CAST( \ 00035 DtStartResumeDecoder, DtStartResumeInteraction, \ 00036 paramName, netType, mutator, castExpr) 00037 00041 class DT_DLL_VL DtStartResumeDecoder : public DtInteractionDecoder 00042 { 00043 public: 00044 00046 DtStartResumeDecoder(DtExerciseConn* exConn, 00047 DtInterClassDesc* classDesc); 00048 00050 virtual ~DtStartResumeDecoder(); 00051 00053 DtStartResumeDecoder(const DtStartResumeDecoder& orig); 00054 00056 DtStartResumeDecoder& operator=(const DtStartResumeDecoder& orig); 00057 00058 protected: 00059 00061 00062 DtDECLARE_START_PARAM_DECODER(OriginatingEntity); 00063 DtDECLARE_START_PARAM_DECODER(ReceivingEntity); 00064 DtDECLARE_START_PARAM_DECODER(RequestIdentifier); 00065 DtDECLARE_START_PARAM_DECODER(RealWorldTime); 00066 DtDECLARE_START_PARAM_DECODER(SimulationTime); 00068 DtDECLARE_START_PARAM_DECODER(RequestID); 00069 }; 00070 00071 #endif 00072 #endif 00073