![]() |
VR-Link API Documentation for HLA Evolved
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 00007 #ifndef DtRecordRDec_H_ 00008 #define DtRecordRDec_H_ 00009 00010 #if DtHLA 00011 00012 #include "interDecoder.h" 00013 00017 00018 class DT_DLL_VL DtRecordRInteraction; 00019 00020 #define DtDECLARE_RECORDR_PARAM_DECODER(paramName) \ 00021 DtDECLARE_PARAM_DECODER(DtRecordRInteraction, paramName) 00022 00023 #define DtDEFINE_SIMPLE_RECORDR_PARAM_DECODER(paramName, netType, mutator) \ 00024 DtDEFINE_SIMPLE_PARAM_DECODER( \ 00025 DtRecordRDecoder, DtRecordRInteraction, \ 00026 paramName, netType, mutator) 00027 00032 00033 class DT_DLL_VL DtRecordRDecoder : public DtInteractionDecoder 00034 { 00035 00036 public: 00037 00038 DtRecordRDecoder(DtExerciseConn *exConn, 00039 DtInterClassDesc *classDesc); 00040 00041 DtRecordRDecoder(const DtRecordRDecoder &orig); 00042 00043 virtual ~DtRecordRDecoder(); 00044 00045 DtRecordRDecoder &operator=(const DtRecordRDecoder &orig); 00046 00047 protected: 00048 00050 DtDECLARE_RECORDR_PARAM_DECODER(OriginatingEntity); 00051 DtDECLARE_RECORDR_PARAM_DECODER(ReceivingEntity); 00052 DtDECLARE_RECORDR_PARAM_DECODER(RequestIdentifier); 00053 DtDECLARE_RECORDR_PARAM_DECODER(AcknowledgementProtocol); 00054 DtDECLARE_RECORDR_PARAM_DECODER(EventType); 00055 DtDECLARE_RECORDR_PARAM_DECODER(ResponseSerialNumber); 00056 DtDECLARE_RECORDR_PARAM_DECODER(RecordSetData); 00057 }; 00058 00059 #endif 00060 #endif 00061