![]() |
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 DtSetRecordDec_H_ 00008 #define DtSetRecordDec_H_ 00009 00010 #if DtHLA 00011 00012 #include "interDecoder.h" 00013 00017 00018 class DT_DLL_VL DtSetRecordInteraction; 00019 00020 #define DtDECLARE_SETRECORD_PARAM_DECODER(paramName) \ 00021 DtDECLARE_PARAM_DECODER(DtSetRecordInteraction, paramName) 00022 00023 #define DtDEFINE_SIMPLE_SETRECORD_PARAM_DECODER(paramName, netType, mutator) \ 00024 DtDEFINE_SIMPLE_PARAM_DECODER( \ 00025 DtSetRecordDecoder, DtSetRecordInteraction, \ 00026 paramName, netType, mutator) 00027 00032 00033 class DT_DLL_VL DtSetRecordDecoder : public DtInteractionDecoder 00034 { 00035 00036 public: 00037 00038 DtSetRecordDecoder(DtExerciseConn *exConn, 00039 DtInterClassDesc *classDesc); 00040 00041 DtSetRecordDecoder(const DtSetRecordDecoder &orig); 00042 00043 virtual ~DtSetRecordDecoder(); 00044 00045 DtSetRecordDecoder &operator=(const DtSetRecordDecoder &orig); 00046 00047 protected: 00048 00050 DtDECLARE_SETRECORD_PARAM_DECODER(OriginatingEntity); 00051 DtDECLARE_SETRECORD_PARAM_DECODER(ReceivingEntity); 00052 DtDECLARE_SETRECORD_PARAM_DECODER(RequestIdentifier); 00053 DtDECLARE_SETRECORD_PARAM_DECODER(AcknowledgementProtocol); 00054 DtDECLARE_SETRECORD_PARAM_DECODER(RecordSetData); 00055 }; 00056 00057 #endif 00058 #endif 00059